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 ee3b98a commit 6edd9f9Copy full SHA for 6edd9f9
.github/workflows/main.yml
@@ -0,0 +1,20 @@
1
+name: main
2
+on:
3
+ - pull_request
4
+ - push
5
+jobs:
6
+ main:
7
+ name: ${{matrix.node}}
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v3
11
+ - uses: actions/setup-node@v3
12
+ with:
13
+ node-version: ${{matrix.node}}
14
+ - run: npm install
15
+ - run: npm test
16
+ strategy:
17
+ matrix:
18
+ node:
19
+ - lts/gallium
20
+ - node
.travis.yml
0 commit comments