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 85e4e5b commit c160ab8Copy full SHA for c160ab8
.github/workflows/main.yml
@@ -0,0 +1,23 @@
1
+name: Node.js CI
2
+
3
+on: [push]
4
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
9
+ strategy:
10
+ matrix:
11
+ node-version: [14.x, 15.x]
12
13
+ steps:
14
+ - uses: actions/checkout@v2
15
+ - name: Use Node.js ${{ matrix.node-version }}
16
+ uses: actions/setup-node@v1
17
+ with:
18
+ node-version: ${{ matrix.node-version }}
19
+ - run: npm ci
20
+ - run: npm test
21
+ - run: npm run lint
22
+ - run: npm run build:debug
23
+ - run: npm run build:prod
0 commit comments