Skip to content

Commit

Permalink
Run lint in GitHub Actions
Browse files Browse the repository at this point in the history
It was only running `npm test`.
  • Loading branch information
gabegorelick authored and clayreimann committed Jun 7, 2020
1 parent bcbfb2f commit 076aeab
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Expand Up @@ -16,9 +16,9 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install test
run: |
npm ci
npm test
- name: npm install
run: npm install
- name: npm ci
run: npm run ci
env:
CI: true

0 comments on commit 076aeab

Please sign in to comment.