Skip to content

Commit 55beae0

Browse files
chore(ci): update CI workflow to ensure consistent package management with pnpm
1 parent c62eb72 commit 55beae0

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,15 @@ jobs:
99
test:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v4
1313
- uses: actions/setup-node@v4
1414
with:
1515
node-version: '18'
1616
cache: 'pnpm'
1717
check-latest: true
18-
package-manager: 'pnpm'
18+
- uses: pnpm/action-setup@v2
19+
with:
20+
version: 8
1921
- name: Install dependencies
2022
run: pnpm install --frozen-lockfile
2123
- name: Run linting
@@ -25,4 +27,4 @@ jobs:
2527
- name: Run tests
2628
run: pnpm test
2729
- name: Run build
28-
run: pnpm run build
30+
run: pnpm run build

0 commit comments

Comments
 (0)