File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 13
13
node-version : 22
14
14
cache : " npm"
15
15
- name : Install dependencies & generate css types
16
- run : npm ci --force
16
+ run : npm ci
17
17
- name : Check types
18
18
run : npm run type:check
19
19
29
29
node-version : 22
30
30
cache : " npm"
31
31
- name : Install dependencies
32
- run : npm ci --force
32
+ run : npm ci
33
33
- name : Run format:check
34
34
run : |
35
35
npm run format:version
49
49
node-version : 22
50
50
cache : " npm"
51
51
- name : Install dependencies
52
- run : npm ci --force
52
+ run : npm ci
53
53
- name : Pre-pull Postgres image
54
54
run : docker pull postgres:15
55
55
- name : Run tests
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ COPY --chown=node:node package*.json ./
31
31
# We install Husky via a "prepare" lifecycle script - disable it in prod
32
32
# See: https://typicode.github.io/husky/guide.html#disable-husky-in-ci-docker-prod
33
33
RUN npm pkg delete scripts.prepare && npm pkg delete scripts.postinstall
34
- RUN npm ci --force
34
+ RUN npm ci
35
35
36
36
# Copy the project files into the app directory
37
37
COPY --chown=node:node . $APP_HOME
You can’t perform that action at this time.
0 commit comments