Vitaly Puzrin
4 years ago
3 changed files with 38 additions and 4 deletions
@ -0,0 +1,37 @@ |
|||||
|
name: CI |
||||
|
|
||||
|
on: |
||||
|
push: |
||||
|
pull_request: |
||||
|
schedule: |
||||
|
- cron: '0 0 * * 3' |
||||
|
|
||||
|
jobs: |
||||
|
test: |
||||
|
|
||||
|
runs-on: ubuntu-latest |
||||
|
|
||||
|
strategy: |
||||
|
matrix: |
||||
|
node-version: [ '12', '14' ] |
||||
|
|
||||
|
steps: |
||||
|
- uses: actions/checkout@v2 |
||||
|
|
||||
|
- name: Use Node.js ${{ matrix.node-version }} |
||||
|
uses: actions/setup-node@v1 |
||||
|
with: |
||||
|
node-version: ${{ matrix.node-version }} |
||||
|
|
||||
|
- run: npm install |
||||
|
|
||||
|
- name: Test |
||||
|
run: npm test |
||||
|
|
||||
|
- name: Create coverage report |
||||
|
run: npm run report-coveralls |
||||
|
|
||||
|
- name: Upload coverage report to coveralls.io |
||||
|
uses: coverallsapp/github-action@v1.1.2 |
||||
|
with: |
||||
|
github-token: ${{ secrets.GITHUB_TOKEN }} |
@ -1,3 +0,0 @@ |
|||||
language: node_js |
|
||||
node_js: node |
|
||||
after_success: npm run report-coveralls |
|
Loading…
Reference in new issue