Skip to content

Commit

Permalink
test: Always test
Browse files Browse the repository at this point in the history
  • Loading branch information
nprail committed Aug 5, 2020
1 parent 18dd249 commit 3d7bca1
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
name: Node CI

on:
push:
branches:
- master
pull_request:
branches:
- '**'
on: [pull_request, push]

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 12
- run: npm ci
- run: npm run lint
test:
name: Node v${{ matrix.node-version }} on ${{ matrix.os }}
strategy:
Expand All @@ -25,6 +28,6 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: install
run: npm install
run: npm ci
- name: run tests
run: npm run test-ci

0 comments on commit 3d7bca1

Please sign in to comment.