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 06e07f0 commit 66e0c58Copy full SHA for 66e0c58
.github/workflows/main.yml
@@ -43,6 +43,28 @@ jobs:
43
run: npm install
44
- name: Check code coverages
45
run: npm test
46
+ example:
47
+ name: Run an example on Node.js ${{ matrix.node }}
48
+ runs-on: ubuntu-latest
49
+ strategy:
50
+ matrix:
51
+ node:
52
+ - '14.17.5'
53
+ - '16.13.1'
54
+ - '17.2.0'
55
+ steps:
56
+ - name: Checkout
57
+ uses: actions/checkout@v2
58
+ with:
59
+ fetch-depth: 1
60
+ - name: Setup Node.js
61
+ uses: actions/setup-node@v2
62
63
+ node-version: ${{ matrix.node }}
64
+ - name: Setup modules
65
+ run: npm install
66
+ - name: Run an example
67
+ run: npm start
68
name: test
69
on:
70
pull_request:
0 commit comments