From 3fa6b43c2266aceadfa948fdef638edf96de2844 Mon Sep 17 00:00:00 2001 From: Zahra Jabini Date: Wed, 16 Dec 2020 09:45:22 -0500 Subject: [PATCH] Add GitHub Actions CI --- .github/workflows/ci.yml | 13 +++++++++++++ 1 file changed, 13 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..eaaabdd55 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,13 @@ +name: Node.js CI +on: [push] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Use Node.js + uses: actions/setup-node@v1 + with: + node-version: '12.x' + - run: yarn install + - run: yarn test