Skip to content

chore(deps): update dependency lint-staged to v15 #57

chore(deps): update dependency lint-staged to v15

chore(deps): update dependency lint-staged to v15 #57

Workflow file for this run

name: Publish Package
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
- uses: actions/setup-node@v3
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- run: |
git config user.name "${{ github.actor }}"
git config user.email "${{ github.actor }}@users.noreply.github.com"
- run: |
corepack enable pnpm
pnpm install --frozen-lockfile
- name: Build packages 📦
run: pnpm run build
env:
NODE_ENV: production
- name: Version and publish 🚀
run: pnpm run release
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}