From 5368cea7bebb0096c7a4c9b6c290e144277552b0 Mon Sep 17 00:00:00 2001 From: Zachiah Sawyer Date: Thu, 22 Aug 2024 10:35:43 -0700 Subject: [PATCH] format ci file --- .github/workflows/checks.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 4ee8834..ae64afb 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -2,21 +2,21 @@ name: Node.js CI on: push: - branches: [ "main" ] + branches: ['main'] pull_request: - branches: [ "main" ] + branches: ['main'] jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - - name: format, lint, check, build - uses: actions/setup-node@v4 - with: - node-version: 20.x - cache: 'npm' - - run: npm ci - - run: npm run lint - - run: npm run check - - run: npm run build + - uses: actions/checkout@v4 + - name: format, lint, check, build + uses: actions/setup-node@v4 + with: + node-version: 20.x + cache: 'npm' + - run: npm ci + - run: npm run lint + - run: npm run check + - run: npm run build