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
7 changes: 2 additions & 5 deletions .github/workflows/test-js.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI
name: JavaScript Build and Lint

on:
push:
Expand All @@ -11,7 +11,7 @@ concurrency:
cancel-in-progress: true

jobs:
lint-and-test:
build-and-lint:
runs-on: ubuntu-latest

steps:
Expand Down Expand Up @@ -42,6 +42,3 @@ jobs:

- name: Lint check
run: npm run lint

- name: Test
run: npm run test
4 changes: 4 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,10 @@ jobs:
run: |
npm run build

- name: Install Playwright browsers
run: |
uv run playwright install chromium

- name: Run tests
run: uv run pytest

Expand Down
Loading