build(deps): bump qs from 6.15.1 to 6.15.2 #637
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: Verify changes | |
| on: pull_request | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| jobs: | |
| verify-linux: | |
| name: Verify linux | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [22.x] | |
| steps: | |
| - uses: google/wireit@setup-github-actions-caching/v1 | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: 'npm' | |
| cache-dependency-path: package-lock.json | |
| - name: Dependency review | |
| uses: actions/dependency-review-action@v4 | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Install Playwright dependencies | |
| run: npx playwright install-deps | |
| - name: Install Playwright | |
| run: npx playwright install | |
| - name: Lint | |
| run: npm run lint | |
| - name: Test | |
| run: npm run test |