We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d75a62e commit f77215bCopy full SHA for f77215b
.github/workflows/ci.yml
@@ -28,10 +28,15 @@ 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('base64'))")
34
+ id: get_job_id
35
- uses: coverallsapp/github-action@v1.1.2
36
with:
37
flag-name:
- ${{github.sha}} - Node.js ${{ matrix.node }} on ${{ matrix.os }}
38
+ ${{ steps.get_job_id.outputs.job_id }} (Node.js ${{ matrix.node }}
39
+ on ${{ matrix.os }})
40
github-token: ${{ secrets.GITHUB_TOKEN }}
41
parallel: true
42
coverage:
0 commit comments