chore: release v1.24.7 #1514
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: checks | |
| on: | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 | |
| - uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0 | |
| with: | |
| node-version: 22 | |
| cache: "npm" | |
| - uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1 | |
| id: playwright-cache | |
| with: | |
| path: | | |
| ~/.cache/ms-playwright | |
| key: ${{ runner.os }}-playwright-${{ hashFiles('**/package-lock.json') }} | |
| - name: Install dependencies | |
| working-directory: ./ | |
| run: npm ci | |
| - name: Install playwright deps | |
| run: npm run playwright:install | |
| if: steps.playwright-cache.outputs.cache-hit != 'true' | |
| - name: Run build | |
| run: npm run build | |
| - name: Run lint | |
| run: npm run lint | |
| - name: Run test | |
| run: npm run test | |
| - name: Run tsc | |
| run: npm run tsc | |
| - name: Archive artifacts | |
| uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0 | |
| if: always() | |
| with: | |
| name: e2e-tests | |
| path: | | |
| tests/__screenshots__/** | |
| tests/__coverage__/** |