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 078d424 commit 2a42cf3Copy full SHA for 2a42cf3
.github/workflows/test.yml
@@ -0,0 +1,23 @@
1
+name: Tests
2
+on: [ push, pull_request ]
3
+
4
+env:
5
+ COVERALLS_SERVICE_NUMBER: ${{ github.run_id }}-${{ github.run_number }}-${{ github.run_attempt }}
6
+ COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
7
8
+jobs:
9
+ test:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v3
13
+ - uses: actions/setup-node@v3
14
+ with:
15
+ node-version: lts/*
16
+ cache: yarn
17
+ - run: yarn install
18
+ # - run: yarn run test
19
+ - run: yarn run coveralls
20
+ - name: Coveralls
21
+ id: coveralls
22
+ uses: coverallsapp/github-action@v2
23
0 commit comments