From 7890530d5f64fbcd5f5cd8438e9d0855920ad917 Mon Sep 17 00:00:00 2001 From: Jacob Smith <3012099+JakobJingleheimer@users.noreply.github.com> Date: Sat, 7 Dec 2024 23:55:23 +0100 Subject: [PATCH] chore(ci): tidy indentation --- .github/workflows/ci.yml | 46 ++++++++++++++++++++-------------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7a92ed0..e06d72e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,16 +19,16 @@ jobs: node: - version: 23.x steps: - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2 - - name: Set up Node.js ${{ matrix.node.version }} - uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # 4.1.0 - with: - node-version: ${{ matrix.node.version }} - cache: 'npm' - - run: npm ci - - run: node --run lint - - run: node --run format - - run: node --run type-check + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2 + - name: Set up Node.js ${{ matrix.node.version }} + uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # 4.1.0 + with: + node-version: ${{ matrix.node.version }} + cache: 'npm' + - run: npm ci + - run: node --run lint + - run: node --run format + - run: node --run type-check tests: if: github.event.pull_request.draft == false @@ -48,16 +48,16 @@ jobs: runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2 - - name: Set up Node.js ${{ matrix.node.version }} - uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # 4.1.0 - with: - node-version: ${{ matrix.node.version }} - cache: 'npm' - - run: npm ci - - run: | - node \ - --run test \ - --test-coverage-lines=0.8 \ - --test-reporter-destination=./coverage.lcov \ - --test-reporter=lcov + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2 + - name: Set up Node.js ${{ matrix.node.version }} + uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # 4.1.0 + with: + node-version: ${{ matrix.node.version }} + cache: 'npm' + - run: npm ci + - run: | + node \ + --run test \ + --test-coverage-lines=0.8 \ + --test-reporter-destination=./coverage.lcov \ + --test-reporter=lcov