Skip to content

Commit f583c4f

Browse files
committed
set up CI
1 parent 867356c commit f583c4f

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/validate.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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+
- uses: actions/setup-node@v1
11+
with:
12+
node-version: 16.x
13+
- name: npm install, build, and test
14+
run: |
15+
npm ci
16+
npm run build --if-present
17+
npm run test

0 commit comments

Comments
 (0)