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 473dbaf commit 4e7133aCopy full SHA for 4e7133a
.github/workflows/blank.yml
@@ -0,0 +1,27 @@
1
+name: CI
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - next
7
8
+jobs:
9
+ test:
10
+ runs-on: ubuntu-latest
11
12
+ steps:
13
+ - uses: actions/checkout@v1
14
15
+ - name: use node
16
+ uses: actions/setup-node@v1
17
+ with:
18
+ node-version: 10
19
20
+ - name: install deps
21
+ run: npm i
22
23
+ - name: simple-tests
24
+ run: npm run generate && npm run validate
25
26
+ - name: specific-tests
27
+ run: npm run test-specific
0 commit comments