Skip to content

Commit

Permalink
added braces
Browse files Browse the repository at this point in the history
  • Loading branch information
dopecodez committed Aug 4, 2021
1 parent 0d9042f commit 20d9892
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@ on:
- .github/workflows/*
pull_request:

env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}

jobs:
build:
name: Node.js ${{ matrix.node-version }}
Expand All @@ -35,7 +32,9 @@ jobs:
- run: npm install
- run: npm test
coverage:
if: env.CC_TEST_REPORTER_ID != null
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
if: ${{env.CC_TEST_REPORTER_ID != null}}
needs: [ build ]
name: coverage
runs-on: ubuntu-latest
Expand Down

0 comments on commit 20d9892

Please sign in to comment.