diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index d24b6b1..2aeadb8 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -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