Skip to content

Commit

Permalink
chore: move full CI run from node 10 to 12 (#9100)
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB committed Oct 26, 2019
1 parent 0c23c3b commit 8862ec3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .azure-pipelines-steps.yml
Expand Up @@ -9,8 +9,8 @@ steps:
# Ensure Node.js 10 is active
- task: NodeTool@0
inputs:
versionSpec: '10.x'
displayName: 'Use Node.js 10'
versionSpec: '12.x'
displayName: 'Use Node.js 12'

# Ensure Python 2.7 is active
- task: UsePythonVersion@0
Expand Down
10 changes: 5 additions & 5 deletions .circleci/config.yml
Expand Up @@ -55,14 +55,14 @@ jobs:
- run: *install
- save-cache: *save-cache
- run:
command: yarn test-ci
command: yarn test-ci-partial
- store_test_results:
path: reports/junit

test-jest-circus:
working_directory: ~/jest
docker:
- image: circleci/node:10
- image: circleci/node:12
steps:
- checkout
- restore-cache: *restore-cache
Expand All @@ -83,14 +83,14 @@ jobs:
- run: *install
- save-cache: *save-cache
- run:
command: yarn test-ci-partial
command: yarn test-ci
- store_test_results:
path: reports/junit

test-browser:
working_directory: ~/jest
docker:
- image: circleci/node:10-browsers
- image: circleci/node:12-browsers
steps:
- checkout
- restore-cache: *restore-cache
Expand All @@ -101,7 +101,7 @@ jobs:
test-or-deploy-website:
working_directory: ~/jest
docker:
- image: circleci/node:10
- image: circleci/node:12
resource_class: large
steps:
- checkout
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
@@ -1,7 +1,7 @@
language: node_js

node_js:
- '10'
- 'lts/*'

branches:
only:
Expand Down

0 comments on commit 8862ec3

Please sign in to comment.