Skip to content

Commit e886133

Browse files
committed
chore: workflows
1 parent a4d7390 commit e886133

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/test.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: test
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
setup:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: checkout
10+
uses: actions/checkout@v2
11+
12+
- name: install
13+
run: yarn install --pure-lockfile
14+
15+
- name: test
16+
run: yarn test

0 commit comments

Comments
 (0)