Skip to content

Commit

Permalink
use node 20
Browse files Browse the repository at this point in the history
  • Loading branch information
dianabarsan committed Feb 3, 2024
1 parent e5e0e1d commit c6f990b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,23 @@ jobs:
name: Unit
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Use Node.js 16.x
- uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 20.x
- run: npm ci
- run: npm run test

integration:
name: Integration
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Use Node.js 16.x
- uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 20.x
- run: echo $(docker-compose -v)
- run: npm ci
- run: npm run integration

0 comments on commit c6f990b

Please sign in to comment.