diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 743170d..1c3f408 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v7 - - uses: actions/setup-node@v5 + - uses: actions/setup-node@v7 with: { node-version: 24, cache: npm } - run: npm ci - run: npm run format:check @@ -21,7 +21,7 @@ jobs: steps: - uses: actions/checkout@v7 with: { fetch-depth: 0 } - - uses: actions/setup-node@v5 + - uses: actions/setup-node@v7 with: { node-version: 24, cache: npm } - run: npm ci - run: npx commitlint --from "${{ github.event.pull_request.base.sha }}" --to "${{ github.event.pull_request.head.sha }}" --verbose