Skip to content

Commit

Permalink
Upgrade to node 20 (#177)
Browse files Browse the repository at this point in the history
* Update docker node version

* Update nvm
  • Loading branch information
willybrauner authored Feb 8, 2024
1 parent b662f82 commit cf409f6
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,17 @@ on: push
jobs:
build_test:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: ['20.x']

steps:
- uses: actions/checkout@v2
- run: node -v
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- name: 🌎 install dependencies
run: npm ci --unsafe-perm && cd apps/front && npm ci --unsafe-perm
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v18.17.1
v20.11
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "3.7"
services:
node:
image: node:18.17.1
image: node:20.11
ports:
- "${DOCKER_NODE_PORT:-5173}:5173" # vite dev server
- "24678:24678" # vite HMR
Expand Down

0 comments on commit cf409f6

Please sign in to comment.