Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upgrade node to 14 #574

Merged
merged 1 commit into from
Jul 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/test-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '12.x'
node-version: '14.x'
- name: Install node modules
run: yarn install
- name: Run lint
Expand All @@ -26,7 +26,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '12.x'
node-version: '14.x'
- name: Install node modules
run: yarn install
- name: Run lint
Expand All @@ -43,7 +43,7 @@ jobs:
extensions: mbstring, zip
- uses: actions/setup-node@v1
with:
node-version: '12.x'
node-version: '14.x'
- name: Install node modules
run: yarn install
- name: Run tests
Expand All @@ -55,7 +55,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '12.x'
node-version: '14.x'
- name: Install node modules
run: yarn install
- name: Run tests
Expand All @@ -67,7 +67,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '12.x'
node-version: '14.x'
- name: Install node modules
run: yarn install
- name: Install chrome browser
Expand All @@ -87,7 +87,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '12.x'
node-version: '14.x'
- name: Install node modules
run: yarn install
- name: Install Firefox
Expand All @@ -105,7 +105,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '12.x'
node-version: '14.x'
- name: Install node modules
run: yarn install
- name: Build with test environment
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
"sjcl": "^1.0.8"
},
"engines": {
"node": "10.* || >= 12"
"node": "14.* || 16.* || >=18"
},
"ember": {
"edition": "octane"
Expand All @@ -119,6 +119,6 @@
}
},
"volta": {
"node": "12.22.12"
"node": "14.21.3"
}
}
2 changes: 1 addition & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -11091,7 +11091,7 @@ moment-timezone@^0.5.43:
dependencies:
moment "^2.29.4"

moment@2.29.4, moment@^2.10.6, moment@^2.19.3, moment@^2.29.4:
moment@^2.10.6, moment@^2.19.3, moment@^2.29.4:
version "2.29.4"
resolved "https://registry.yarnpkg.com/moment/-/moment-2.29.4.tgz#3dbe052889fe7c1b2ed966fcb3a77328964ef108"
integrity sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==
Expand Down
Loading