Bump pnpm/action-setup from 2 to 3 #39
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: TypeScript Types | |
on: | |
push: | |
branches: [main] | |
paths: | |
- "**.ts" | |
- "package.json" | |
- "pnpm-lock.yaml" | |
- "tsconfig.json" | |
- ".github/workflows/typescript.yml" | |
pull_request: | |
branches: [main] | |
paths: | |
- "**.ts" | |
- "package.json" | |
- "pnpm-lock.yaml" | |
- "tsconfig.json" | |
- ".github/workflows/typescript.yml" | |
jobs: | |
typescript: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v3 | |
with: | |
run_install: false | |
- name: Get pnpm store directory | |
id: pnpm-cache | |
shell: bash | |
run: | | |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT | |
- uses: actions/cache@v4 | |
name: Setup pnpm cache | |
with: | |
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }} | |
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm-store- | |
- name: Install dependencies | |
run: pnpm i --frozen-lockfile | |
- name: Run TypeScript | |
run: pnpm run lint:types |