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
6 changes: 3 additions & 3 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ jobs:
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build packages
run: pnpm run build
run: node --run build
- name: Check
run: pnpm run lint
run: node --run lint
- name: Verify rules docs
run: pnpm run check:docs
run: node --run check:docs
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Install dependencies
run: pnpm install --frozen-lockfile --ignore-scripts
- name: Build packages
run: pnpm run build
run: node --run build
- name: Publish
run: |
if git log -1 --pretty=%B | grep "^release: [0-9]\+\.[0-9]\+\.[0-9]\+$";
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
run: pnpm install --frozen-lockfile --ignore-scripts

- name: Build
run: pnpm run build
run: node --run build

- name: Determine release info
id: release
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ jobs:
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build packages
run: pnpm run build
run: node --run build
- name: Test on node@24
run: pnpm run test
run: node --run test
- name: Setup node@22
uses: pnpm/setup@5d160c5bc68a09337ad0d5654e237e03253b5879 # v1
with:
runtime: node@22
install: false
- name: Test on node@22
run: pnpm run test
run: node --run test
Loading
Loading