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 ded6a32 commit fed7184Copy full SHA for fed7184
.github/workflows/tests.yml
@@ -12,13 +12,16 @@ on:
12
13
jobs:
14
test:
15
+ name: Test
16
runs-on: ubuntu-latest
17
18
strategy:
19
+ fail-fast: false
20
matrix:
21
node-version: [10.x, 14.x]
22
23
steps:
24
+ - name: Checkout repository
25
- uses: actions/checkout@v2
26
with:
27
fetch-depth: '2'
@@ -29,6 +32,10 @@ jobs:
29
32
node-version: ${{ matrix.node-version }}
30
33
- run: npm install
31
34
- run: npm run lint
35
+ - run: npm run lint-demo
36
+ - run: npm run build
37
+ - run: npm run build-demo
38
+ - run: npm run build-types
39
- run: npm run test
40
41
- name: Upload test coverage report to Codecov
0 commit comments