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 25, 2020
1 parent e10a91e commit 3818b40
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
@@ -0,0 +1,19 @@
name: GitHub Actions Build KKT
on:
push:
branches:
- master

jobs:
build:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@master

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

- run: yarn install
- run: yarn run prepare

0 comments on commit 3818b40

Please sign in to comment.