We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b6109c commit 2611e90Copy full SHA for 2611e90
.github/workflows/ci-workflow.yaml
@@ -0,0 +1,32 @@
1
+name: Lint and Test
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ lint:
7
+ name: Check lint
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v1
11
+ - uses: actions/setup-node@v1
12
+ with:
13
+ node-version: '12.x'
14
+ - run: npm install
15
+ - run: npm run lint
16
+ env:
17
+ CI: true
18
+ test:
19
+ name: Run tests on ${{ matrix.os }}
20
+ runs-on: ${{ matrix.os }}
21
+ strategy:
22
+ matrix:
23
+ os: [ubuntu-latest, windows-latest, macos-latest]
24
25
26
27
28
29
30
+ - run: npm test
31
32
.travis.yml
0 commit comments