From e17f4f0878c468bc08d67bc8412cb385d7cabff0 Mon Sep 17 00:00:00 2001 From: Travis Fischer Date: Sat, 26 Mar 2022 04:00:27 -0400 Subject: [PATCH] feat: add github actions CI --- .github/workflows/build.yml | 17 +++++++++++++++++ 1 file changed, 17 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 0000000..8cfe7a1 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,17 @@ +name: Build + +on: [push, pull_request] + +jobs: + Build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + + - uses: actions/setup-node@v2 + with: + node-version: 16 + cache: yarn + + - run: yarn install --frozen-lockfile + - run: yarn build