Skip to content

Commit

Permalink
build(deps): Use Node 16 minimum
Browse files Browse the repository at this point in the history
  • Loading branch information
hamzahamidi committed Apr 3, 2022
1 parent 772d98b commit e333e7f
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:

strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
node-version: [16.x, lts/*]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Setup Node ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
Expand Down
7 changes: 2 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: setup Node
uses: actions/setup-node@v2
with:
node-version: '14.18.1'

uses: actions/setup-node@v3
- run: npm ci
- run: npm run build:demo

Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
14.18.1
16.13.2
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"author": "https://github.com/hamzahamidi/Angular6-json-schema-form/graphs/contributors",
"description": "Angular JSON Schema Form builder Demo",
"engines": {
"node": ">=14"
"node": ">=16"
},
"keywords": [
"Angular",
Expand Down

0 comments on commit e333e7f

Please sign in to comment.