Skip to content

Commit 8bfcc18

Browse files
authored
GitHub Actions
1 parent 9242afe commit 8bfcc18

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/main.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v1
12+
- uses: actions/setup-node@v1
13+
with:
14+
node-version: 12
15+
- name: npm install, build, and test
16+
run: |
17+
npm install
18+
npm run prepare --if-present
19+
npm test
20+
env:
21+
CI: true

0 commit comments

Comments
 (0)