chore(deps): update node dependencies #1191
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: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - '*' | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| os: [ ubuntu-latest, windows-latest ] | |
| node-version: [ 24 ] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Node ${{ matrix.node-version }} | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Install dependencies | |
| run: | | |
| npm ci | |
| - name: Install Playwright browsers | |
| run: | | |
| npx playwright install --with-deps chromium | |
| - name: Lint, build and test | |
| shell: bash | |
| run: | | |
| npm run build | |
| npm t | |
| - name: Validate Firefox extension | |
| if: matrix.os == 'ubuntu-latest' | |
| run: | | |
| npm run validate:firefox | |