Skip to content

chore: add changeset #3

chore: add changeset

chore: add changeset #3

Workflow file for this run

name: Publish canary
on:
push:
branches:
- release/**
jobs:
canary:
name: Canary
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18]
steps:
- name: Checkout Branch
uses: actions/checkout@v3
- 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: Check changeset exists
run: test "$(ls -1 .changeset | wc -l)" -gt "2"
- name: Config npm
run: echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > .npmrc
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: pnpm run release:snapshot