chore(deps): update vite-and-test to v3.0.5 (patch) #469
Workflow file for this run
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: Tests | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
test: | |
timeout-minutes: 60 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: oven-sh/setup-bun@v2 | |
with: | |
bun-version: latest | |
- name: Install dependencies | |
run: bun install --frozen-lockfile | |
- name: Lint | |
run: bun lint | |
- name: Run type checks | |
run: bun x tsc -p tsconfig.json --noEmit | |
- name: Build frontend | |
run: bun run build | |
- name: Install Playwright Browsers | |
run: bun x playwright install --with-deps | |
- name: Unit & Component Tests | |
run: bun run test:unit | |
# Start the frontend server in the background | |
- name: Start frontend server | |
run: | | |
nohup bun run preview -- --port 5173 & | |
shell: bash | |
# Wait for the server to be ready | |
- name: Wait for server to be ready | |
run: bun x wait-on http://localhost:5173 | |
- name: Run Playwright tests | |
run: bun run test:e2e | |
- uses: actions/upload-artifact@v4 | |
if: ${{ !cancelled() }} | |
with: | |
name: test-artifacts | |
path: | | |
playwright-report/ | |
src/**/__screenshots__/**/*.png | |
retention-days: 30 |