Skip to content

Commit 4e7133a

Browse files
committed
chore: try to add github workflows
1 parent 473dbaf commit 4e7133a

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/blank.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)