Skip to content

Commit

Permalink
chore(ci): tidy indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
JakobJingleheimer committed Dec 7, 2024
1 parent 73cafc3 commit 7890530
Showing 1 changed file with 23 additions and 23 deletions.
46 changes: 23 additions & 23 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

0 comments on commit 7890530

Please sign in to comment.