Skip to content

Commit

Permalink
Merge branch 'master' into add_datadir
Browse files Browse the repository at this point in the history
  • Loading branch information
developit authored Jun 20, 2020
2 parents da02ba5 + 3f53261 commit ec58f40
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: CI

on: [push]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 12
- name: npm install, build, and test
run: |
npm install
npm run build --if-present
npm test
env:
CI: true

0 comments on commit ec58f40

Please sign in to comment.