Skip to content
Merged
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
18 changes: 8 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,6 @@ on:
branches: [main]

jobs:
lint:
name: Lint JS
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Lint JS
run: npx --yes oxlint@latest -D perf
test:
name: Unit tests
runs-on: ubuntu-latest
Expand All @@ -30,7 +22,13 @@ jobs:
cache: "npm"
- name: Install dependencies
run: npm install --ignore-scripts --no-audit
- name: Run unit tests
- name: Unit tests
run: npm test
- name: Test types
- name: Check types
run: npm run check
- name: Lint JS
run: npx --yes oxlint@latest -D perf
- name: Build package
run: npm run build
- name: "Publint"
run: "npx --yes publint"