-
-
Notifications
You must be signed in to change notification settings - Fork 9.3k
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
CI: Fix GitHub unit test workflow #9971
Conversation
@@ -5,22 +5,26 @@ on: [push] | |||
jobs: | |||
build: | |||
|
|||
name: Test on node ${{ matrix.node_version }} and ${{ matrix.os }} |
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 previous version failed because we weren't using the matrix but trying to reference it in the name.
52c025a
to
1c4c365
Compare
1c4c365
to
3363102
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.
💯💯💯
@@ -17,7 +17,7 @@ jobs: | |||
- uses: actions/setup-node@v1 | |||
with: | |||
node-version: '10.x' | |||
- uses: actions/checkout@v1 | |||
- uses: actions/checkout@v2 |
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.
v2 is faster. Looks like its 2s vs 25s to checkout the repo. Small things add up :)
44ae04d
to
9f525d4
Compare
CI: Fix GitHub unit test workflow
What I did
Fixed the GitHub unit test workflow and added tests for Node 12