Skip to content

Commit

Permalink
Switched to node 20
Browse files Browse the repository at this point in the history
  • Loading branch information
nicosomb committed Oct 3, 2024
1 parent 5b312ca commit 7a793fd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 14.x
node-version: 20.x

- run: npm ci

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-versions: [ '14', '16' ]
node-versions: [ '14', '16', '20' ]
steps:
- name: Checkout
uses: actions/[email protected]
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ui-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 20

- name: Build
- name: Build
run: npm install && npm run build

- name: Build ZIP
Expand All @@ -63,7 +63,7 @@ jobs:
run: |
docker compose -f "docker-compose.yml" up -d --build
bash -c 'while [[ "$(curl -L -s -o /dev/null -w %{http_code} http://localhost/en/)" != "200" ]]; do sleep 5; done'
- name: Install dependencies
working-directory: tests/UI/
run: npm ci
Expand Down

0 comments on commit 7a793fd

Please sign in to comment.