Update ci.yml #26
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
# Automatically cancel in-progress actions on the same branch | ||
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@v3 | ||
- uses: pnpm/[email protected] | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
cache: 'pnpm' | ||
- if: ${{ steps.cache-node.outputs.cache-hit != 'true' }} | ||
run: pnpm install | ||
- uses: changesets/action@v1 | ||
if: ${{ github.event_name !== 'pull_request' }} | ||
Check failure on line 29 in .github/workflows/ci.yml GitHub Actions / CIInvalid workflow file
|
||
with: | ||
publish: pnpm changeset publish | ||
commit: '[ci] release' | ||
title: '[ci] release' | ||
env: | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |