chore(deps): bump serialize-javascript from 6.0.2 to 7.0.5 (via audit fix) #662
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: Snap | |
| env: | |
| CI: true | |
| FORCE_COLOR: 1 | |
| PLAYWRIGHT_BROWSERS_PATH: ${{ github.workspace }}/ms-playwright | |
| on: | |
| push: | |
| branches: | |
| - master | |
| paths: | |
| - 'packages/snap/**' | |
| - .github/workflows/snap.yml | |
| - pnpm-lock.yaml | |
| pull_request: | |
| paths: | |
| - 'packages/snap/**' | |
| - .github/workflows/snap.yml | |
| - pnpm-lock.yaml | |
| jobs: | |
| test: | |
| timeout-minutes: 60 | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: write | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| version: latest | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: lts/* | |
| cache: pnpm | |
| - run: pnpm install | |
| - run: pnpm --filter filsnap exec playwright install --with-deps chromium | |
| - run: pnpm -r --filter filsnap run lint | |
| - run: pnpm -r --filter filsnap exec depcheck | |
| - run: pnpm -r --filter filsnap run test | |
| id: tests | |
| - uses: actions/upload-artifact@v6 | |
| if: always() | |
| with: | |
| name: playwright-report | |
| path: packages/snap/playwright-report/ | |
| retention-days: 30 |