File tree Expand file tree Collapse file tree 2 files changed +10
-6
lines changed Expand file tree Collapse file tree 2 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 35
35
node-version : ' 22'
36
36
37
37
- name : Install dependencies
38
- run : npm i
38
+ run : npm ci
39
39
40
40
- name : Run quality and typing checks
41
41
run : npm run lint
70
70
node-version : ' 22'
71
71
72
72
- name : Install dependencies
73
- run : npm i
73
+ run : npm ci
74
74
75
75
- name : Run quality and typing checks
76
76
run : npm run type-check
@@ -105,7 +105,7 @@ jobs:
105
105
node-version : ' 22'
106
106
107
107
- name : Install dependencies
108
- run : npm i
108
+ run : npm ci
109
109
110
110
- name : Run pre-commit checks
111
111
run : npx husky run pre-commit
@@ -140,7 +140,7 @@ jobs:
140
140
node-version : ' 22'
141
141
142
142
- name : Install dependencies
143
- run : npm i
143
+ run : npm ci
144
144
145
145
- name : Run unit tests
146
146
run : npm run test:unit
@@ -175,7 +175,7 @@ jobs:
175
175
node-version : ' 22'
176
176
177
177
- name : Install dependencies
178
- run : npm i
178
+ run : npm ci
179
179
180
180
- name : Run integration tests
181
181
run : npm run test:integration
@@ -261,7 +261,7 @@ jobs:
261
261
262
262
- name : Install dependencies
263
263
if : steps.check-changes.outputs.should_build == 'true'
264
- run : npm i
264
+ run : npm ci
265
265
266
266
- name : Build app to root
267
267
if : steps.check-changes.outputs.should_build == 'true'
Original file line number Diff line number Diff line change 74
74
"typescript" : " ^5" ,
75
75
"typescript-eslint" : " ^8.34.0"
76
76
},
77
+ "optionalDependencies" : {
78
+ "@next/swc-linux-x64-gnu" : " ^15.3.3" ,
79
+ "@next/swc-linux-x64-musl" : " ^15.3.3"
80
+ },
77
81
"lint-staged" : {
78
82
"*.js" : " eslint --cache --fix" ,
79
83
"*.ts" : " eslint --cache --fix" ,
You can’t perform that action at this time.
0 commit comments