Skip to content

Commit 0b8c8d5

Browse files
authored
Merge pull request #100 from mbpictures/fix-ci
ci: update node version
2 parents 03eac43 + 06055c4 commit 0b8c8d5

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ jobs:
3535
DATABASE_URL: postgresql://postgres:postgres@localhost:5432/ticketshop-ci
3636
steps:
3737
- uses: actions/checkout@v2
38-
- name: Use Node.js 14.18
39-
uses: actions/setup-node@v2
38+
- name: Use Node.js 20
39+
uses: actions/setup-node@v4
4040
with:
41-
node-version: '14.18'
41+
node-version: 20
4242
cache: 'npm'
4343
- run: npm ci
4444
- run: npm run cypress:build

.github/workflows/node.js.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@ jobs:
5454
uses: actions/checkout@v2
5555
# Install NPM dependencies, cache them correctly
5656
# and run all Cypress tests
57-
- name: Use Node.js 14.18
58-
uses: actions/setup-node@v2
57+
- name: Use Node.js 20
58+
uses: actions/setup-node@v4
5959
with:
60-
node-version: '14.18'
60+
node-version: 20
6161
cache: 'npm'
6262
- name: Run E2E tests 🧪
6363
uses: cypress-io/github-action@v4

0 commit comments

Comments
 (0)