chore(deps): bump actions/checkout from 4.1.4 to 4.1.6 in the actions… #351
This file contains 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: Validate | |
on: [push] | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Set up Node.js | |
uses: ./.github/actions/setup-node | |
- name: Check | |
run: pnpm check | |
# TODO: cache playwright | |
- name: Install Playwright Browsers | |
run: pnpm exec playwright install --with-deps | |
- name: Build app for e2e tests | |
run: pnpm build | |
- name: Run e2e tests | |
run: pnpm e2e | |
- uses: actions/[email protected] | |
if: always() | |
with: | |
name: playwright-report | |
path: playwright-report/ | |
retention-days: 30 |