Update for ESLint v9 compatibility #253
Workflow file for this run
This file contains 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: CI | |
on: | |
push: | |
branches: main | |
tags: v* | |
pull_request: | |
branches: "*" | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
permissions: | |
# https://docs.npmjs.com/generating-provenance-statements#publishing-packages-with-provenance-via-github-actions | |
id-token: write | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 22.x | |
registry-url: https://registry.npmjs.org | |
- uses: actions/cache@v2 | |
with: | |
path: ~/.npm | |
key: v1-${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: v1-${{ runner.os }}-node- | |
- run: npm ci | |
- run: npm run build | |
- run: npm run lint | |
- run: npm run test | |
# publish version tags | |
- name: npm publish (dry run) | |
run: npm publish --provenance --access public --dry-run | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }} | |
- name: npm publish | |
run: npm publish --provenance --access public | |
if: ${{ startsWith(github.ref, 'refs/tags/v') }} | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }} |