Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,13 @@ jobs:
cache: 'pnpm'

- name: Install Dependencies
run: pnpm install && npx playwright install
run: pnpm install

- name: Run Lint
run: pnpm run lint

- name: Install Playwright
run: npx playwright install

- name: Run Test
run: pnpm run build && pnpm run test
Loading