diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 3cb1073..db25b0e 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -3,6 +3,8 @@ name: Pull Request jobs: test: + env: + CI: true runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -10,9 +12,9 @@ jobs: with: node-version: 22 cache: 'pnpm' - - name: Install dependencies - env: - CI: true - run: pnpm install + - uses: pnpm/action-setup@v4 + name: Install pnpm + with: + run_install: true - name: Test run: pnpm test