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

chore: test against node.js 14 #11467

Merged
merged 1 commit into from Apr 23, 2020
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
4 changes: 2 additions & 2 deletions .circleci/config.yml
Expand Up @@ -40,12 +40,12 @@ aliases:
executors:
node-executor:
docker:
- image: circleci/node:13
- image: circleci/node:latest
Copy link
Contributor Author

@JLHwung JLHwung Apr 22, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Currently the latest tag is still resolved to 13.10. After CircleCI updates their docker image, it will resolve to 14 automatically. Changing it to latest so it is future-proof.

working_directory: ~/babel
# e2e-vue-cli test requires chromium
node-browsers-executor:
docker:
- image: circleci/node:13-browsers
- image: circleci/node:latest-browsers
working_directory: ~/babel

jobs:
Expand Down
3 changes: 2 additions & 1 deletion .travis.yml
Expand Up @@ -28,7 +28,7 @@ matrix:
- node_js: "node"
env: JOB=lint
# We test the latest version on circleci
- node_js: "12"
- node_js: "13"
# Move `windows` build to be the third since it is slow
- os: windows
node_js: "node"
Expand All @@ -42,6 +42,7 @@ matrix:
- $HOME/AppData/Local/Temp/chocolatey
# Continue node_js matrix
- node_js: "6"
- node_js: "12"
- node_js: "10"
- node_js: "8"
- node_js: "node"
Expand Down