Skip to content

Commit

Permalink
Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
james-pre committed Sep 9, 2024
1 parent 6d31c29 commit b15d677
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,33 +9,33 @@ on:

jobs:
ci:
name: CI
runs-on: ${{ inputs.platform }}
defaults:
run:
shell: bash
steps:
- name: Checkout
uses: actions/checkout@v4
name: CI
runs-on: ${{ inputs.platform }}
defaults:
run:
shell: bash
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22.5.1
- name: Install dependencies
run: npm install
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22.5.1
- name: Install dependencies
run: npm install

- name: Formatting
run: npm run format:check
- name: Formatting
run: npm run format:check

- name: Linting
run: npm run lint
- name: Linting
run: npm run lint

- name: Build
run: npm run build
- name: Build
run: npm run build

- name: Unit tests
run: npm run test
- name: Unit tests
run: npm run test

docs:
runs-on: ubuntu-latest
Expand Down

0 comments on commit b15d677

Please sign in to comment.