Skip to content

Fix components render cycle. #602

Fix components render cycle.

Fix components render cycle. #602

Workflow file for this run

name: Main
on:
workflow_dispatch:
push:
branches: [main]
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
jobs:
lint-test:
uses: ./.github/workflows/lint_test.yml
secrets: inherit
release:
name: Release
runs-on: ubuntu-latest
timeout-minutes: 10
needs:
- lint-test
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
cache: yarn
- name: Install project dependencies
run: yarn install
env:
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: true
- name: Create Release Pull Request or Publish to npm
id: changesets
uses: changesets/action@v1
with:
publish: yarn changeset publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}