From 8b795762ee4e49b27f0ce6966df71c6249e75248 Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Mon, 5 Oct 2020 15:04:06 +0530 Subject: [PATCH] Adds github workflow file for validation --- .github/workflows/ci.yml | 21 +++++++++++++++++++++ 1 file changed, 21 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 000000000..0b74b3afc --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,21 @@ +name: validation +on: [push] + +jobs: + test: + name: Validation + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + + - name: Use Node.js 14.x + uses: actions/setup-node@v1 + with: + version: 14.x + + - name: Install dependencies + run: yarn + + - name: Test and verify domains + run: CI=true yarn test