Skip to content

fix: action failed when no changeset file #6

fix: action failed when no changeset file

fix: action failed when no changeset file #6

Workflow file for this run

name: Publish canary
on:
push:
branches:
- release/**
- fix/canary-ci-error # test
jobs:
check_changeset:
name: Check Changeset exists
runs-on: ubuntu-latest
steps:
- name: Checkout Branch
uses: actions/checkout@v4
- name: Check
run: test "$(ls -1 .changeset | wc -l)" -gt "2"
canary:

Check failure on line 21 in .github/workflows/canary.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/canary.yml

Invalid workflow file

You have an error in your yaml syntax on line 21
name: Publish Canary
runs-on: ubuntu-latest
needs: check_changeset
if: !contains(needs.check_changeset.outputs.status, 'failure')
strategy:
matrix:
node-version: [18]
steps:
- name: Checkout Branch
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Setup
run: pnpm run setup
- name: Config npm
run: echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > .npmrc
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: pnpm run release:snapshot