Skip to content

Commit 2119803

Browse files
committed
Add GitHub Actions workflow
1 parent f8c7b82 commit 2119803

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/main.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: CI
2+
3+
on: [push]
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v1
11+
- uses: docker://node:8
12+
with:
13+
entrypoint: yarn
14+
args: install --pure-lockfile --audit
15+
- uses: docker://node:8
16+
with:
17+
entrypoint: yarn
18+
args: lint
19+
- uses: docker://node:8
20+
with:
21+
entrypoint: yarn
22+
args: test

0 commit comments

Comments
 (0)