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

Remove support for EoL Node versions 10 and 12 #1333

Merged
merged 1 commit into from
May 2, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
26 changes: 13 additions & 13 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
steps:
- task: NodeTool@0
inputs:
versionSpec: '10.x'
versionSpec: '14.x'
- bash: ./scripts/pipeline/shouldRunTests.sh && SKIP_TESTS=true && echo "Only non-code has changed!" || test true
displayName: should skip tests
- bash: test $SKIP_TESTS && echo "Skipped!" || yarn install
Expand All @@ -45,7 +45,7 @@ jobs:
steps:
- task: NodeTool@0
inputs:
versionSpec: '10.x'
versionSpec: '14.x'
- bash: ./scripts/pipeline/shouldRunTests.sh && SKIP_TESTS=true && echo "Only non-code has changed!" || test true
displayName: should skip tests
- bash: test $SKIP_TESTS && echo "Skipped!" || yarn install
Expand All @@ -64,7 +64,7 @@ jobs:
steps:
- task: NodeTool@0
inputs:
versionSpec: '10.x'
versionSpec: '14.x'
- bash: ./scripts/pipeline/shouldRunTests.sh && SKIP_TESTS=true && echo "Only non-code has changed!" || test true
displayName: should skip tests
- bash: test $SKIP_TESTS && echo "Skipped!" || yarn install
Expand All @@ -89,7 +89,7 @@ jobs:
steps:
- task: NodeTool@0
inputs:
versionSpec: '10.x'
versionSpec: '14.x'
- bash: ./scripts/pipeline/shouldRunTests.sh && SKIP_TESTS=true && echo "Only non-code has changed!" || test true
displayName: should skip tests
- bash: test $SKIP_TESTS && echo "Skipped!" || yarn install
Expand All @@ -114,7 +114,7 @@ jobs:
steps:
- task: NodeTool@0
inputs:
versionSpec: '10.x'
versionSpec: '14.x'
- bash: ./scripts/pipeline/shouldRunTests.sh && SKIP_TESTS=true && echo "Only non-code has changed!" || test true
displayName: should skip tests
- bash: test $SKIP_TESTS && echo "Skipped!" || yarn install
Expand All @@ -139,7 +139,7 @@ jobs:
steps:
- task: NodeTool@0
inputs:
versionSpec: '10.x'
versionSpec: '14.x'
- bash: ./scripts/pipeline/shouldRunTests.sh && SKIP_TESTS=true && echo "Only non-code has changed!" || test true
displayName: should skip tests
- bash: test $SKIP_TESTS && echo "Skipped!" || yarn install
Expand All @@ -166,7 +166,7 @@ jobs:
steps:
- task: NodeTool@0
inputs:
versionSpec: '10.x'
versionSpec: '14.x'
- bash: ./scripts/pipeline/shouldRunTests.sh && SKIP_TESTS=true && echo "Only non-code has changed!" || test true
displayName: should skip tests
- bash: test $SKIP_TESTS && echo "Skipped!" || yarn install
Expand Down Expand Up @@ -194,7 +194,7 @@ jobs:
steps:
- task: NodeTool@0
inputs:
versionSpec: '10.x'
versionSpec: '14.x'
- bash: ./scripts/pipeline/shouldRunTests.sh && SKIP_TESTS=true && echo "Only non-code has changed!" || test true
displayName: should skip tests
- bash: test $SKIP_TESTS && echo "Skipped!" || yarn install
Expand Down Expand Up @@ -225,7 +225,7 @@ jobs:
steps:
- task: NodeTool@0
inputs:
versionSpec: '10.x'
versionSpec: '14.x'
- task: Npm@1
inputs:
command: publish
Expand All @@ -245,7 +245,7 @@ jobs:
steps:
- task: NodeTool@0
inputs:
versionSpec: '10.x'
versionSpec: '14.x'
- bash: |
git config user.name "Website Build Bot"
git config user.email "<>"
Expand Down Expand Up @@ -284,7 +284,7 @@ jobs:
steps:
- task: NodeTool@0
inputs:
versionSpec: '10.x'
versionSpec: '14.x'
- bash: yarn install
displayName: yarn install
- bash: ./scripts/pipeline/checkBetaEligibility.js
Expand Down Expand Up @@ -312,7 +312,7 @@ jobs:
steps:
- task: NodeTool@0
inputs:
versionSpec: '10.x'
versionSpec: '14.x'
- bash: yarn install
displayName: yarn install
- bash: ./scripts/pipeline/generateBetaReleaseVersion.js
Expand Down Expand Up @@ -359,7 +359,7 @@ jobs:
steps:
- task: NodeTool@0
inputs:
versionSpec: '10.x'
versionSpec: '14.x'
- bash: git config core.autocrlf true || test true
displayName: git config core.autocrlf
- bash: git config --global user.name "${GH_NAME}" || test true
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"scram"
],
"engines": {
"node": ">=10.13.0"
"node": ">=14.0.0"
},
"repository": {
"type": "git",
Expand Down