oxc/.github/actions/pnpm/action.yml
2024-09-08 14:05:46 +08:00

15 lines
303 B
YAML

name: pnpm
runs:
using: composite
steps:
- uses: pnpm/action-setup@v4.0.0
- uses: actions/setup-node@v4
with:
node-version-file: .node-version
registry-url: "https://registry.npmjs.org"
cache: pnpm
- run: pnpm install --frozen-lockfile
shell: bash