Skip to content

pnpm-lock:

pnpm-lock: #18

Workflow file for this run

name: Ci
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
with:
fetch-depth: 0
- uses: actions/setup-node@v2
with:
node-version: 22
registry-url: https://registry.npmjs.org/
# scripts
- run: npm i -g pnpm && pnpm i
- run: pnpm build
# - name: Create Release
# id: changesets
# uses: changesets/action@master
# # with:
# # publish: yarn release
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# NPM_TOKEN: ${{ secrets.NPM_TOKEN }}