Skip to content

Commit

Permalink
Update validate-push.yml
Browse files Browse the repository at this point in the history
Use yarn for validation/linting, use node 10
  • Loading branch information
rmcvey authored Dec 2, 2019
1 parent a39f944 commit a586324
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/validate-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,18 @@ jobs:

steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: '10.x'
- name: Install dependencies
id: stethoscope-install-deps
run: |
npm install
yarn install
- name: Lint code
id: stethoscope-run-linter
run: |
CI=true npm run lint
CI=true yarn lint
- name: Run clientside tests
id: stethoscope-run-tests
run: |
CI=true npm run test
CI=true yarn test

0 comments on commit a586324

Please sign in to comment.