Skip to content

Commit

Permalink
fix: fix npm build failure on workflows (#714)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aceix authored Aug 21, 2024
1 parent 65a69a5 commit 643d359
Show file tree
Hide file tree
Showing 5 changed files with 1,127 additions and 722 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
- name: Clean Install
run: npm ci
- name: Lint
Expand All @@ -27,7 +27,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
- name: Clean Install
run: npm ci
- name: Unit/Component testing
Expand All @@ -40,7 +40,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
- name: Clean Install
run: npm ci
- name: Build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
- name: Install dependencies
run: npm ci
- name: Install Playwright Browsers
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.saas
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18-alpine3.17 as build
FROM node:20-alpine3.20 as build

# LABELS
LABEL \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.standalone
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18-alpine3.17 as build
FROM node:20-alpine3.20 as build

# LABELS
LABEL \
Expand Down
Loading

0 comments on commit 643d359

Please sign in to comment.