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 fc7bc3b commit 3771c20Copy full SHA for 3771c20
.github/main.workflow.yml
.github/workflows/workflow.yml
@@ -0,0 +1,23 @@
1
+name: Main workflow
2
+on: [push]
3
+jobs:
4
+ run:
5
+ name: Run
6
+ runs-on: ${{ matrix.operating-system }}
7
+ strategy:
8
+ matrix:
9
+ operating-system: [ubuntu-latest, windows-latest]
10
+ actions:
11
+ - name: Set Node.js 10.x
12
+ uses: bryanmacfarlane/node-config@master
13
+ with:
14
+ version: 10.x
15
+
16
+ - name: npm install
17
+ run: npm install
18
19
+ - name: Lint
20
+ run: npm run format-check
21
22
+ - name: npm test
23
+ run: npm test
0 commit comments