-
Notifications
You must be signed in to change notification settings - Fork 28
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
Unhelpful error when running action #8
Comments
hey @daniel-vc Looks like it's a problem with your tests themselves regarding promise chaining. Just to clarify: does it reproduce locally? |
Hi, I have the same issue, and no, it is only in the actions. I don't have those messages locally. For me, it comes from your action! |
Hi there, I can confirm I'm getting the same warning. |
I also experienced this issue and found that it is caused by this issue https://npm.community/t/npm-ci-produces-a-tonn-of-excess-warnings-on-install/3261. This can be fixed by upgrading the nodejs image used in the docker file. I tested using nodejs 12 (current LTS) and this issue went away. I Opened up #10 to help resolve the issue. |
I had to remove this action from the workflow due to the same error. I'll be watching this issue to verify it's fixed with proposed solution (node upgrade) |
I would actually recommend running ESLint without this action, because out of the box the ubuntu runtime of Github Action has everything we need now, like so: name: CI
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install modules
run: yarn
- name: Lint
run: eslint . |
Now in the end, all this action is doing is running |
Hi, I'm trying to use your linting action but even though i've followed your set up steps, and running eslint locally, I get the below message. Any ideas?
The text was updated successfully, but these errors were encountered: