Skip to content

Commit

Permalink
Node 14x minimum version (#721)
Browse files Browse the repository at this point in the history
* align nodejs versions

* update version

* update and rebase with release branch
  • Loading branch information
thescientist13 committed Dec 9, 2021
1 parent 71dfcd9 commit 9f4c0eb
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:

strategy:
matrix:
node: [14]
node: [14, 16]

steps:
- uses: actions/checkout@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:

strategy:
matrix:
node: [14]
node: [14, 16]

steps:
- uses: actions/checkout@v1
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"Web Components"
],
"engines": {
"node": ">=12.x"
"node": ">=14"
},
"bin": {
"greenwood": "./src/index.js"
Expand Down
2 changes: 1 addition & 1 deletion www/pages/guides/cloudflare-workers-deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
sh ./.github/workflows/chromium-lib-install.sh
   - uses: actions/setup-node@v1
   with:
    node-version: "12.x"
    node-version: "14.x"
   - name: Install deps
   run: npm install
   - name: Build docs
Expand Down
2 changes: 1 addition & 1 deletion www/pages/guides/s3-cloudfront.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
sh ./.github/workflows/chromium-lib-install.sh
- uses: actions/setup-node@v1
with:
node-version: "12.x"
node-version: "14.x"
- name: Install deps
run: npm install
- name: Build docs
Expand Down

0 comments on commit 9f4c0eb

Please sign in to comment.