From 29a32b6cda0e357c7d21d8328acb880391f366ea Mon Sep 17 00:00:00 2001 From: fireboltofdeath <24422634+Fireboltofdeath@users.noreply.github.com> Date: Wed, 30 Oct 2024 22:17:55 -0400 Subject: [PATCH] Add build and lint workflow --- .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..d07012c --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,23 @@ +name: CI +on: [push] + +jobs: + build: + name: Build + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Setup Node.js + uses: actions/setup-node@v3 + with: + node-version: 20.x + + - name: Install dependencies + run: corepack yarn install + + - name: Build packages + run: corepack yarn run build + + - name: Run ESLint + run: corepack yarn run lint