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
1 change: 1 addition & 0 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ jobs:
format:
name: Format
if: "${{ !startsWith(github.head_ref, 'release-') }}"
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v4
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ jobs:
lint:
name: Lint
if: "${{ !startsWith(github.head_ref, 'release-') }}"
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v4
Expand All @@ -20,5 +21,8 @@ jobs:
cache: npm
- name: Install core dependencies
run: npm ci --no-audit
# Almost not needed, but a single file in `scripts/` imports built code
- name: Build package
run: npm run build
- name: Run lint
run: npm run lint
Loading