Github Actions - Run tests and stale PR #8
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: Run Tests | |
on: | |
pull_request: | |
branches: [master] | |
push: | |
branches: [master] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '22' | |
- name: Install dependencies | |
run: npm ci | |
- name: Run Vitest | |
run: npx vitest run | |
- name: Install Playwright Browsers | |
run: npx playwright install --with-deps | |
- name: Run Playwright Tests | |
run: npx playwright test | |
- name: Upload Playwright Traces | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: playwright-traces | |
path: playwright-report/**/trace.zip | |