From 956a0659bac3500b955995da43d82f96ecb08d6b Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sat, 28 Mar 2020 13:07:29 -0400 Subject: [PATCH] Add ci.yml file to setup GitHub actions. --- .github/workflows/ci.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..31e23ba --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,17 @@ +name: CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v1.1.0 + - run: npm install + - run: ./build.sh + - run: npm test -- 2.22.5