Skip to content

Commit fed7184

Browse files
Enhance "tests" workflow
Exercise more package scripts.
1 parent ded6a32 commit fed7184

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/tests.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,16 @@ on:
1212

1313
jobs:
1414
test:
15+
name: Test
1516
runs-on: ubuntu-latest
1617

1718
strategy:
19+
fail-fast: false
1820
matrix:
1921
node-version: [10.x, 14.x]
2022

2123
steps:
24+
- name: Checkout repository
2225
- uses: actions/checkout@v2
2326
with:
2427
fetch-depth: '2'
@@ -29,6 +32,10 @@ jobs:
2932
node-version: ${{ matrix.node-version }}
3033
- run: npm install
3134
- 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
3239
- run: npm run test
3340

3441
- name: Upload test coverage report to Codecov

0 commit comments

Comments
 (0)