From 06812a1efe9fe643654b0172de6d01aa8c5afb29 Mon Sep 17 00:00:00 2001 From: Ian Storm Taylor Date: Sat, 9 Nov 2019 20:22:31 -0500 Subject: [PATCH] Create ci.yml --- .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 000000000..cbc59132c --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,17 @@ +name: CI +on: [push] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: actions/setup-node@v1 + with: + node-version: 12 + - run: | + yarn install + yarn build + yarn lint + yarn test + env: + CI: true