This commit is contained in:
eson
2020-08-18 19:22:29 +08:00
commit 7108eb424a
31 changed files with 29058 additions and 0 deletions

22
.github/workflows/ci.yml vendored Normal file
View File

@@ -0,0 +1,22 @@
name: 📦 Test and Deploy
on:
push:
branches:
- master
jobs:
install-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@master
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@master
with:
node-version: ${{ matrix.node-version }}
- name: Install and Test
run: |
yarn
yarn test
yarn build