Skip to content

Commit

Permalink
chore: Add github workflows config.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywcjlove committed Dec 14, 2020
1 parent 2edd1fc commit 02214a3
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Build and test storejs
on:
push:
branches:
- master
jobs:
build-uiw:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@master

- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: '10.x'

- run: npm install
- run: npm run build
- run: npm run test

0 comments on commit 02214a3

Please sign in to comment.