Skip to content

Commit f17128e

Browse files
committed
feat(ci): add the simplest test.yml workflow for CI
Signed-off-by: Kipras Melnikovas <kipras@kipras.org>
1 parent bb869a1 commit f17128e

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: "tests"
2+
3+
on: [push, workflow_dispatch]
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v2
11+
- uses: actions/setup-node@v2
12+
with:
13+
node-version: "12"
14+
- run: yarn --frozen-lockfile
15+
- run: yarn test
16+

0 commit comments

Comments
 (0)