Skip to content

Commit

Permalink
upgrade to node 20
Browse files Browse the repository at this point in the history
  • Loading branch information
HarmlessHarm committed Feb 2, 2024
1 parent 72ed8d1 commit 7b2208e
Show file tree
Hide file tree
Showing 5 changed files with 4,502 additions and 15,418 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Setup Node.js 16
- name: Setup Node.js 20
uses: actions/setup-node@v2
with:
node-version: "16"
node-version: "20"
cache: "npm"
- run: npm i -g @quasar/cli@latest
- run: npm ci
Expand All @@ -29,7 +29,7 @@ jobs:
${{ secrets.ENV_FILE }}
EOF
- run: quasar build -m ssr --if-present
- run: npm run build

# Login against a Docker registry except on PR
# https://github.com/docker/login-action
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build_staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Setup Node.js 16
- name: Setup Node.js 20
uses: actions/setup-node@v2
with:
node-version: '16'
cache: 'npm'
node-version: "20"
cache: "npm"
- run: npm i -g @quasar/cli@latest
- run: npm ci

Expand All @@ -31,7 +31,7 @@ jobs:
EOF
# - run: npm run build in debug mode --if-present
- run: quasar build -m ssr -d --if-present
- run: npm run build

# Login against a Docker registry except on PR
# https://github.com/docker/login-action
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:16
FROM node:20

WORKDIR /app

Expand Down
Loading

0 comments on commit 7b2208e

Please sign in to comment.