Skip to content

test(react/lazy): comprehensive test improvements and fix 'ImportCach… #1350

test(react/lazy): comprehensive test improvements and fix 'ImportCach…

test(react/lazy): comprehensive test improvements and fix 'ImportCach… #1350

Workflow file for this run

name: Changesets PR or Publish
on:
push:
branches: [main, beta, next]
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
jobs:
build:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: write
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/pnpm-setup-node
- run: pnpm install
- run: |
git config --global user.name "Jonghyeon Ko"
git config --global user.email "[email protected]"
- name: Create Changesets Pull Request or Publish to NPM
id: changesets
uses: changesets/action@v1
with:
title: 'chore: version packages'
commit: 'chore: version packages'
version: pnpm run changeset:version
publish: pnpm run changeset:publish
setupGitUser: false
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}