diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 30e43be3..325e92f0 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -16,34 +16,34 @@ jobs: matrix: node-version: [18.18.0] steps: - - name: Check out the code - uses: actions/checkout@v4 - with: - fetch-depth: 0 + - name: Check out the code + uses: actions/checkout@v4 + with: + fetch-depth: 0 - - name: Setup pnpm - uses: pnpm/action-setup@v4 + - name: Setup pnpm + uses: pnpm/action-setup@v4 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v4 - with: - node-version: ${{ matrix.node-version }} - cache: 'pnpm' + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v4 + with: + node-version: ${{ matrix.node-version }} + cache: "pnpm" - - name: Install dependencies - run: pnpm install + - name: Install dependencies + run: pnpm install - - name: Run commitlint - run: pnpm commitlint --from ${{ github.event.pull_request.head.sha }}~${{ github.event.pull_request.commits }} --to ${{ github.event.pull_request.head.sha }} --verbose + # - name: Run commitlint + # run: pnpm commitlint --from ${{ github.event.pull_request.head.sha }}~${{ github.event.pull_request.commits }} --to ${{ github.event.pull_request.head.sha }} --verbose - - name: Run format and lint - run: pnpm biome ci + - name: Run format and lint + run: pnpm biome ci - - name: Run type check - run: pnpm typecheck + - name: Run type check + run: pnpm typecheck - - name: Run Build - run: pnpm build + - name: Run Build + run: pnpm build - - name: Run Tests - run: pnpm run test + - name: Run Tests + run: pnpm run test