Skip to content

Commit

Permalink
fix: every step must have uses or run
Browse files Browse the repository at this point in the history
  • Loading branch information
saisilinus committed Apr 18, 2022
1 parent 1b3e65b commit 9276a0c
Showing 1 changed file with 3 additions and 16 deletions.
19 changes: 3 additions & 16 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

steps:
- name: Run linting tests
- run: yarn lint
run: yarn lint

run-unit-tests:

Expand All @@ -38,7 +38,7 @@ jobs:

steps:
- name: Run unit tests
- run: yarn test
run: yarn test

generate-coverage:

Expand All @@ -50,17 +50,4 @@ jobs:

steps:
- name: Generate coverage
- run: yarn coverage:coveralls

send-coverage-to-coveralls:

runs-on: ubuntu-latest

needs: generate-coverage

uses: coverallsapp/github-action@v1.1.2

steps:
- name: Publish to coveralls.io
with:
github-token: ${{ github.token }}
run: yarn coverage:coveralls

0 comments on commit 9276a0c

Please sign in to comment.