diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000..b51f31b5 --- /dev/null +++ b/.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 \ No newline at end of file