We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00e70ca commit 1539cb3Copy full SHA for 1539cb3
.github/workflows/ci.yaml
@@ -0,0 +1,23 @@
1
+name: CI
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ ci:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v2
10
+ - name: Set up Node
11
+ uses: actions/setup-node@v2
12
+ with:
13
+ node-version: 12
14
+ cache: yarn
15
+ registry-url: https://npm.manageiq.org/
16
+ - name: Prepare tests
17
+ run: bin/setup
18
+ - name: Run tests
19
+ run: yarn run test
20
+ - name: Report code coverage
21
+ if: ${{ github.ref == 'refs/heads/master' }}
22
+ continue-on-error: true
23
+ run: cat reports/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
.travis.yml
0 commit comments