Skip to content

Commit

Permalink
Merge pull request #1333 from tulios/remove-node-10-and-10-support
Browse files Browse the repository at this point in the history
Remove support for EoL Node versions 10 and 12
  • Loading branch information
Nevon committed May 2, 2022
2 parents 200b9e1 + cd2dae0 commit cb05082
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
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

0 comments on commit cb05082

Please sign in to comment.