Skip to content

Bump pnpm/action-setup from 2.3.0 to 2.4.0 #45

Bump pnpm/action-setup from 2.3.0 to 2.4.0

Bump pnpm/action-setup from 2.3.0 to 2.4.0 #45

Workflow file for this run

name: pipeline
on: [push, pull_request]
jobs:
pipeline:
name: pipeline
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/[email protected]
with:
version: 7.x.x
- uses: actions/setup-node@v3
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 }}