From c89bfa1a2fb958d5c70866eaa8e89a7fe6d9234e Mon Sep 17 00:00:00 2001 From: Skwaer17 Date: Wed, 22 Jan 2025 17:44:38 +0100 Subject: [PATCH] Style Jobs --- .github/workflows/ci.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8e61907b..b0900881 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,8 +23,24 @@ jobs: - name: Run tests run: npm run test -- --coverage + + style: + name: Style + runs-on: ubuntu-latest + steps: + - name: Check out code + uses: actions/checkout@v4 + + - name: Set up Node + uses: actions/setup-node@v4 + with: + node-version: 18 + - name: Install dependencies + run: npm ci + - name: Run formatting check + run: npm run format:check