diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 1151bf5..c6062c0 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -2,6 +2,7 @@ on: push: paths: - '**.ts' + - '.github/workflows/lint.yaml' jobs: lint: @@ -10,15 +11,14 @@ jobs: - name: Checkout uses: actions/checkout@v4 - name: Setup PNPM - uses: pnpm/action-setup@v2 + uses: pnpm/action-setup@v4 with: - version: 8.15.1 + version: 9.4.0 + run_install: true - name: Setup Node.js environment uses: actions/setup-node@v4 with: cache: pnpm node-version: 20.x - - name: Install - run: pnpm i - name: Lint run: pnpm run lint diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 0c556eb..2a3587e 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -9,16 +9,15 @@ jobs: - name: Checkout uses: actions/checkout@v4 - name: Setup PNPM - uses: pnpm/action-setup@v2 + uses: pnpm/action-setup@v4 with: - version: 8.15.1 + version: 9.4.0 + run_install: true - name: Setup Node.js environment uses: actions/setup-node@v4 with: cache: pnpm node-version: 20.x - - name: Install - run: pnpm i - name: Build run: ENVIRONMENT=development pnpm exec tsup env: