-
-
Notifications
You must be signed in to change notification settings - Fork 448
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
Test on Node.js 8 #882
Test on Node.js 8 #882
Conversation
.github/workflows/ci.yml
Outdated
- name: Build babel-loader | ||
run: yarn run build | ||
env: | ||
YARN_NODE_LINKER: node-modules |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The env YARN_NODE_LINKER
can be moved to the job scope: https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-syntax-for-github-actions#env
fadf7fc
to
69bbe09
Compare
@@ -7,7 +7,7 @@ | |||
], | |||
"main": "lib/index.js", | |||
"engines": { | |||
"node": ">= 6.9" | |||
"node": ">= 8.9" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was a breaking change in #822, but no one complained 🤷
We can make it work if someone opens an issue.
Also, AVA doesn't work on Node.js 8 so I'm running a smaller single test.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🤔
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
schema-utils
, introduced in that PR, uses some syntax that is not supported on Node.js 6.
babel-loader/package.json
Line 10 in a4d17c0