From 3e7d96240ade8fb22c173b08bae2e1c9679c832e Mon Sep 17 00:00:00 2001 From: Sawyer Hood Date: Mon, 13 Nov 2023 16:24:40 -0500 Subject: [PATCH] Add a github action to lint and build (#30) --- .github/workflows/ci.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 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 00000000..0eb85243 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,28 @@ +name: Build and Lint + +on: + push: + branches: [main] + pull_request: + branches: [main] + +jobs: + build-and-lint: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: Set up Node.js + uses: actions/setup-node@v2 + with: + node-version: "20" # Specify the Node.js version + + - name: Install dependencies + run: npm install + + - name: Run build + run: npm run build + + - name: Run lint + run: npm run lint