-
Notifications
You must be signed in to change notification settings - Fork 780
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: migrate to gh actions #1329
Conversation
d2e7e83
to
32a5d18
Compare
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.
Could you also remove the .codeclimate.yml file since we don't run code climate anymore?
- version=6 | ||
- version=8 | ||
- version=10 | ||
- version=lts | ||
- version=latest |
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.
All of the SendGrid helpers that use make test-docker
don't rely on the language version that's installed. They rely on the version
env var which is used in their Dockerfile. The GH action needs to set the version
env var since right now it will always just use lts
:
Lines 1 to 2 in 3251610
ARG version=lts | |
FROM node:$version |
No description provided.