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 d75a62e commit 114de9eCopy full SHA for 114de9e
.github/workflows/ci.yml
@@ -28,10 +28,16 @@ jobs:
28
- run: npm run lint
29
if: matrix.node == 14 && matrix.os == 'ubuntu-latest'
30
- run: npm test
31
+ - run:
32
+ echo ::set-output name=job_id::$(node -e
33
+ "console.log(crypto.randomBytes(16).toString('hex'))")
34
+ id: get_job_id
35
+ shell: bash
36
- uses: coverallsapp/github-action@v1.1.2
37
with:
38
flag-name:
- ${{github.sha}} - Node.js ${{ matrix.node }} on ${{ matrix.os }}
39
+ ${{ steps.get_job_id.outputs.job_id }} (Node.js ${{ matrix.node }}
40
+ on ${{ matrix.os }})
41
github-token: ${{ secrets.GITHUB_TOKEN }}
42
parallel: true
43
coverage:
0 commit comments