From d3b17357a03d88086b2731e33b53248b5042ba5a Mon Sep 17 00:00:00 2001 From: 100stacks <100stacks@users.noreply.github.com> Date: Mon, 15 Mar 2021 17:32:51 -0500 Subject: [PATCH] build(ci): implement github actions --- .github/workflows/build.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 000000000..e4ac170ac --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,27 @@ +# GitHub Action Worflow to support Helix-UI CI Pipeline + +name: Helix-UI CI Pipeline + +on: + push: + branches: + - master + pull_request: + branches: + - master + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + uses: actions/setup-node@v1 + with: + node-version: '10.x' + - run: npm install -g yarn + - run: yarn lint + - run: yarn generate + - run: yarn compile --prod + - run: yarn test