From 3a58fdfa46c7233b9824cb7f522ffd9c011a02e7 Mon Sep 17 00:00:00 2001 From: Brandon Keepers Date: Fri, 13 Oct 2023 13:50:43 -0400 Subject: [PATCH] Setup GitHub Actions --- .github/workflows/ci.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 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..2717557 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,23 @@ +name: CI +on: [push, pull_request] +jobs: + lint: + name: Lint + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v3 + with: + cache: yarn + - run: yarn install + - run: yarn lint + test: + name: Test + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v3 + with: + cache: yarn + - run: yarn install + - run: yarn test