Skip to content

Commit

Permalink
Bump node environment to 15.x
Browse files Browse the repository at this point in the history
It updates node version to 15.x to be able to use
`String.prototype.replaceAll()`
  • Loading branch information
undergroundwires committed Sep 9, 2021
1 parent 4d7ff7e commit 2f0321f
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-desktop.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: '14.x'
node-version: 15.x
- name: Install dependencies
run: npm ci
- name: Run tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-site.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
name: "App: Setup node"
uses: actions/setup-node@v1
with:
node-version: '14.x'
node-version: 15.x
-
name: "App: Install dependencies"
run: npm ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/quality-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: 14.x
node-version: 15.x
- name: Install dependencies
run: npm ci
- name: Lint
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/security-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
name: Setup node
uses: actions/setup-node@v1
with:
node-version: 14.x
node-version: 15.x
-
name: NPM audit
run: npm audit
run: exit "$(npm audit)" # Since node 15.x, it does not fail with error if we don't explicitly exit
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
name: Setup node
uses: actions/setup-node@v1
with:
node-version: '14.x'
node-version: 15.x
-
name: Install dependencies
run: npm ci
Expand Down

0 comments on commit 2f0321f

Please sign in to comment.