build(deps-dev): bump the minorandpatch group with 6 updates #1187
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node | |
| # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
| name: CI | |
| on: | |
| push: | |
| branches: [develop, master, next, beta, alpha] | |
| pull_request: | |
| branches: [develop, master, next, beta, alpha] | |
| permissions: | |
| packages: write | |
| contents: write | |
| issues: write | |
| pull-requests: write | |
| env: | |
| PRIMARY_NODE_VERSION: 22 | |
| jobs: | |
| install: | |
| name: Checkout and Install | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Install | |
| uses: ./.github/actions/install | |
| with: | |
| node-version: ${{ env.PRIMARY_NODE_VERSION }} | |
| lint: | |
| name: lint Package | |
| needs: [build] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Install | |
| uses: ./.github/actions/install | |
| with: | |
| node-version: ${{ env.PRIMARY_NODE_VERSION }} | |
| - name: Build | |
| uses: ./.github/actions/build | |
| - name: Lint | |
| run: | | |
| npm run lint | |
| build: | |
| name: Build Package | |
| needs: [install] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Install | |
| uses: ./.github/actions/install | |
| with: | |
| node-version: ${{ env.PRIMARY_NODE_VERSION }} | |
| - name: Build | |
| uses: ./.github/actions/build | |
| tests: | |
| name: Test Package | |
| needs: [build] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Install | |
| uses: ./.github/actions/install | |
| with: | |
| node-version: ${{ env.PRIMARY_NODE_VERSION }} | |
| - name: Build | |
| uses: ./.github/actions/build | |
| - name: Run tests | |
| run: | | |
| npm run test | |
| # preview: | |
| # name: Preview Package | |
| # needs: [build] | |
| # runs-on: ubuntu-latest | |
| # steps: | |
| # - name: Checkout | |
| # uses: actions/checkout@v6 | |
| # | |
| # - name: Install | |
| # uses: ./.github/actions/install | |
| # with: | |
| # node-version: ${{ env.PRIMARY_NODE_VERSION }} | |
| # | |
| # - name: Build | |
| # uses: ./.github/actions/build | |
| # | |
| # - name: Publish | |
| # run: npx pkg-pr-new publish './packages/*' |