update ci and pkg.json #10
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: "Chromatic" | ||
on: | ||
pull_request: | ||
paths: | ||
- 'src/view/**' | ||
- '.github/workflows/chromatic.yml' | ||
workflow_dispatch: | ||
inputs: | ||
my_input: | ||
description: 'testing e2e' | ||
required: true | ||
permissions: | ||
contents: read | ||
jobs: | ||
lint: | ||
uses: ./.github/workflows/lint.yml | ||
Check failure on line 19 in .github/workflows/chromatic.yml GitHub Actions / .github/workflows/chromatic.ymlInvalid workflow file
|
||
chromatic: | ||
needs: lint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Install pnpm | ||
uses: pnpm/action-setup@v4 | ||
with: | ||
version: 9 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
cache: 'pnpm' | ||
- name: Install dependencies | ||
run: pnpm install | ||
- name: eslint | ||
run: pnpm lint | ||
- name: Run Chromatic | ||
uses: chromaui/action@latest | ||
with: | ||
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} | ||
exitOnceUploaded: true | ||
onlyChanged: true | ||
traceChanged: true | ||
diagnostics: true | ||
skip: ${{ github.event.pull_request.draft == true }} | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: chromatic-build-artifacts-${{ github.run_id }} | ||
path: | | ||
chromatic-diagnostics.json | ||
**/build-storybook.log |