Skip to content

Commit 573a233

Browse files
committed
fix: use node 20 and npm install in CI
1 parent 4b8a610 commit 573a233

File tree

2 files changed

+15
-4
lines changed

2 files changed

+15
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ jobs:
1818

1919
- uses: actions/setup-node@v3
2020
with:
21-
node-version: 18
21+
node-version: 20
2222
cache: npm
2323
cache-dependency-path: backend/package-lock.json
2424

2525
- name: Install dependencies
26-
run: npm ci
26+
run: npm install
2727

2828
- name: Lint
2929
run: npm run lint
@@ -45,12 +45,12 @@ jobs:
4545

4646
- uses: actions/setup-node@v3
4747
with:
48-
node-version: 18
48+
node-version: 20
4949
cache: npm
5050
cache-dependency-path: frontend/package-lock.json
5151

5252
- name: Install dependencies
53-
run: npm ci
53+
run: npm install
5454

5555
- name: Lint
5656
run: npm run lint

frontend/package-lock.json

Lines changed: 11 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)