Skip to content

fix: errant slice for trailing whitespace (#28) #57

fix: errant slice for trailing whitespace (#28)

fix: errant slice for trailing whitespace (#28) #57

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request_target' && github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build Packages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- run: pnpm install
- uses: changesets/action@v1
if: ${{ github.event_name != 'pull_request' }}
with:
publish: pnpm changeset publish
commit: '[ci] release'
title: '[ci] release'
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}