-
Notifications
You must be signed in to change notification settings - Fork 0
chore(github-actions): add github actions to this repo #42
base: master
Are you sure you want to change the base?
Conversation
Codecov Report
@@ Coverage Diff @@
## master #42 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 5 5
Lines 95 95
=========================================
Hits 95 95 Continue to review full report at Codecov.
|
${{ runner.os }}- | ||
|
||
# Install environment | ||
- run: npm config set spin false |
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.
I prefer block run step:
- name: Install environment
run: |
npm config set spin false
npm install -g npm@7
npm install -g codecov
npm --version
With this, we can also remove comments for name
field.
name: Check ember-try for [${{matrix.scenario}}] | ||
strategy: | ||
matrix: | ||
scenario: [ember-lts-2.18, ember-lts-3.4, ember-release, ember-beta, ember-default-with-jquery] |
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.
Can we dump this matrix into another yaml and reuse it in all workflows?
- run: npm run lint:js | ||
- run: npm run lint:hbs | ||
- run: npm test | ||
- run: codecov --file=coverage/node/lcov.info |
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.
I think we can use this action here:
No description provided.