From a8343dece93d32d1ce660830136b96ba7fc242eb Mon Sep 17 00:00:00 2001 From: Clay McLeod Date: Tue, 30 Jul 2024 14:19:06 -0500 Subject: [PATCH] ci: introduces basic CI pipeline --- .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 0000000..637853a --- /dev/null +++ b/.github/workflows/CI.yml @@ -0,0 +1,17 @@ +name: CI + +on: + push: + branches: main + pull_request: + +jobs: + prettier: + runs-on: ubuntu-latest + steps: + - name: Setup Node + uses: actions/setup-node@v4 + with: + node-version: lts + - name: Install Dependencies + run: npx prettier --check .px prettier --check .