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