Skip to content

Commit

Permalink
Build - Node update to v20 (#2402)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ricokola authored Aug 27, 2024
1 parent dd06a45 commit fb61643
Show file tree
Hide file tree
Showing 5 changed files with 10,703 additions and 8,990 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

strategy:
matrix:
node-version: [12.x]
node-version: [20.x]
env:
REPO_GCWEB: GCWeb
REPO_JEKYLL: gcweb-jekyll
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
node-version: [12.x]
node-version: [20.x]
steps:
- uses: actions/checkout@v2

Expand Down
5 changes: 2 additions & 3 deletions Gruntfile.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -499,8 +499,7 @@ module.exports = (grunt) ->
"check-wet-version"
"Ensure WET-BOEW's version is the same in package as in node_modules",
(src) ->
installedFull = this.data[0]
installed = installedFull.substring(installedFull.indexOf("#") + 2)
installed = this.data[0]
expectedFull = this.data[1]
expected = expectedFull.substring(expectedFull.indexOf("#") + 2)

Expand Down Expand Up @@ -538,7 +537,7 @@ module.exports = (grunt) ->
checkGitUrls: true

"check-wet-version":
src: ["<%= pkgWET._from %>", "<%= pkg.dependencies['wet-boew'] %>"]
src: ["<%= pkgWET.version %>", "<%= pkg.dependencies['wet-boew'] %>"]

"a11y-report":
all:
Expand Down
Loading

0 comments on commit fb61643

Please sign in to comment.