Skip to content
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
4 changes: 2 additions & 2 deletions .azure-pipelines-steps.yml
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
language: node_js

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

branches:
only:
Expand Down