Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ node_modules
dist/
test-results
test-temp-*
.rslib

# IDE
.vscode/*
Expand Down
Loading