build(deps): bump immutable from 5.1.5 to 5.1.9 #26
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
| # Tests are skipped for site-only and docs-only changes (they exercise the | |
| # packages, which the site can't affect). Lint runs unfiltered in lint.yml. | |
| name: Test | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - v1 | |
| paths-ignore: | |
| - 'site/**' | |
| - '**.md' | |
| pull_request: | |
| branches: | |
| - master | |
| - v1 | |
| paths-ignore: | |
| - 'site/**' | |
| - '**.md' | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v7 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v7 | |
| with: | |
| node-version: '22' | |
| cache: npm | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Get Playwright version | |
| id: playwright-version | |
| run: echo "version=$(node -p "require('@playwright/test/package.json').version")" >> "$GITHUB_OUTPUT" | |
| - name: Cache Playwright browsers | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.cache/ms-playwright | |
| key: playwright-browsers-${{ runner.os }}-${{ steps.playwright-version.outputs.version }} | |
| - name: Install Playwright browsers | |
| run: npx playwright install --with-deps chromium firefox webkit | |
| - name: Test | |
| run: npx turbo run test |