File tree 1 file changed +6
-10
lines changed
1 file changed +6
-10
lines changed Original file line number Diff line number Diff line change @@ -28,34 +28,30 @@ jobs:
28
28
steps :
29
29
- uses : actions/checkout@v4
30
30
31
- - name : Setup pnpm
32
-
33
-
34
31
- name : Setup Node.js
35
32
uses : actions/setup-node@v4
36
33
with :
37
34
node-version : 20.x
38
- cache : pnpm
39
35
40
36
- name : Install dependencies
41
- run : pnpm install --frozen-lockfile
37
+ run : npm ci
42
38
43
39
- name : Install playwright browsers
44
40
run : npx playwright install --with-deps
45
41
46
42
- name : Run svelte-check
47
- run : pnpm check
43
+ run : npm run check
48
44
49
45
- name : Lint project (prettier format and eslint)
50
- run : pnpm lint
46
+ run : npm run lint
51
47
52
48
- name : Run unit tests (vitest)
53
- run : pnpm test:unit
49
+ run : npm run test:unit
54
50
env :
55
51
CI : true
56
52
57
53
- name : Run integration tests (playwright)
58
- run : pnpm test:integration
54
+ run : npm run test:integration
59
55
env :
60
56
CI : true
61
57
68
64
retention-days : 30
69
65
70
66
- name : Build project
71
- run : pnpm build
67
+ run : npm run build
You can’t perform that action at this time.
0 commit comments