Skip to content

Commit fc1e42d

Browse files
committed
Switch back to npm for workflow (until we've added packageManager in package.json (i.e. merged PR #136 (if we do))
1 parent 4e1226c commit fc1e42d

File tree

1 file changed

+6
-10
lines changed

1 file changed

+6
-10
lines changed

.github/workflows/test_frontend.yaml

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -28,34 +28,30 @@ jobs:
2828
steps:
2929
- uses: actions/checkout@v4
3030

31-
- name: Setup pnpm
32-
uses: pnpm/[email protected]
33-
3431
- name: Setup Node.js
3532
uses: actions/setup-node@v4
3633
with:
3734
node-version: 20.x
38-
cache: pnpm
3935

4036
- name: Install dependencies
41-
run: pnpm install --frozen-lockfile
37+
run: npm ci
4238

4339
- name: Install playwright browsers
4440
run: npx playwright install --with-deps
4541

4642
- name: Run svelte-check
47-
run: pnpm check
43+
run: npm run check
4844

4945
- name: Lint project (prettier format and eslint)
50-
run: pnpm lint
46+
run: npm run lint
5147

5248
- name: Run unit tests (vitest)
53-
run: pnpm test:unit
49+
run: npm run test:unit
5450
env:
5551
CI: true
5652

5753
- name: Run integration tests (playwright)
58-
run: pnpm test:integration
54+
run: npm run test:integration
5955
env:
6056
CI: true
6157

@@ -68,4 +64,4 @@ jobs:
6864
retention-days: 30
6965

7066
- name: Build project
71-
run: pnpm build
67+
run: npm run build

0 commit comments

Comments
 (0)