chore(deps): update actions/checkout action to v6 #920
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
| name: Test & release | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - master | |
| - main | |
| jobs: | |
| test: | |
| name: npm test | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| strategy: | |
| matrix: | |
| node: [22] | |
| steps: | |
| - name: ⬇️ Checkout repo | |
| uses: actions/checkout@v6 | |
| - name: ⎔ Setup node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| # cache requires lockfile | |
| # cache: "npm" | |
| - name: 📥 Download deps | |
| run: npm install | |
| env: | |
| NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| - name: ▶️ Run tests | |
| run: npm test | |
| release: | |
| name: 🚀 Release | |
| needs: [test] | |
| runs-on: ubuntu-latest | |
| if: ${{ !github.event.fork && | |
| contains('refs/heads/master,refs/heads/main,refs/heads/beta,refs/heads/next,refs/heads/alpha', | |
| github.ref) && github.event_name == 'push' }} | |
| steps: | |
| - name: ⬇️ Checkout repo | |
| uses: actions/checkout@v6 | |
| - name: ⎔ Setup node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 22 | |
| # cache requires lockfile | |
| # cache: "npm" | |
| - name: 📥 Download deps | |
| run: npm install | |
| env: | |
| NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| - name: 🏗 Run build script | |
| run: npm run --if-present build | |
| - name: 🚀 Release | |
| uses: tradeshift/actions-semantic-release@v2 | |
| id: semantic-release | |
| with: | |
| branches: | | |
| [ | |
| 'master', | |
| 'main', | |
| 'next', | |
| {name: 'beta', prerelease: true}, | |
| {name: 'alpha', prerelease: true} | |
| ] | |
| registry: https://registry.npmjs.com/ | |
| npm_publish: true | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN_PUBLIC }} |