Skip to content

build(deps-dev): bump @babel/traverse from 7.22.8 to 7.23.2 #59

build(deps-dev): bump @babel/traverse from 7.22.8 to 7.23.2

build(deps-dev): bump @babel/traverse from 7.22.8 to 7.23.2 #59

Workflow file for this run

name: Publish Package
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # 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 }}