Skip to content

Commit d57c0a6

Browse files
Add CI workflow
1 parent 1f3b166 commit d57c0a6

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/ci.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
- name: Setup Node.js
11+
uses: actions/setup-node@v1
12+
with:
13+
node-version: '14.x'
14+
- run: npm ci
15+
- run: npm test

0 commit comments

Comments
 (0)