Skip to content

Bump pnpm/action-setup from 3.0.0 to 4.0.0 #62

Bump pnpm/action-setup from 3.0.0 to 4.0.0

Bump pnpm/action-setup from 3.0.0 to 4.0.0 #62

Workflow file for this run

name: pipeline
on: [push, pull_request]
jobs:
pipeline:
name: pipeline
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/[email protected]
with:
version: 8.x.x
- uses: actions/setup-node@v4
with:
node-version: latest
cache: "pnpm"
registry-url: "https://registry.npmjs.org"
- name: Install and build
run: pnpm install --frozen-lockfile
- name: Lint
run: |
pnpm format
pnpm lint
- name: Build
run: pnpm build
- name: Publish
if: startsWith(github.ref, 'refs/tags/v')
run: pnpm publish --no-git-checks
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}