Bump prettier from 3.9.5 to 3.9.6 #1149
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
| name: CI | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '24.x' | |
| - run: npm ci | |
| - run: npm run build | |
| - run: npm test | |
| web: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '24.x' | |
| - run: npm ci | |
| working-directory: web | |
| - run: npm run build | |
| working-directory: web | |
| - run: npm test | |
| working-directory: web | |
| publish: | |
| if: startsWith(github.ref, 'refs/tags/v') | |
| needs: [build, web] | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| id-token: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '24.x' | |
| - run: npm ci | |
| # Trusted publishing via OIDC — no NPM_TOKEN needed. | |
| # Configure the trusted publisher on npmjs.com to allow this repo/workflow. | |
| # See https://docs.npmjs.com/trusted-publishers | |
| - run: npm publish --provenance --access public | |
| env: | |
| NODE_AUTH_TOKEN: "" |