Skip to content

Todari의 μŠ€ν† λ¦¬λΆ 배포 #10

Todari의 μŠ€ν† λ¦¬λΆ 배포

Todari의 μŠ€ν† λ¦¬λΆ 배포 #10

name: Storybook Deployment
run-name: ${{ github.actor }}의 μŠ€ν† λ¦¬λΆ 배포
on:
pull_request:
branches:
- develop
paths:
- 'HDesign/**'
jobs:
storybook:
runs-on: ubuntu-latest
outputs:
status: ${{ job.status }}
defaults:
run:
shell: bash
working-directory: ./HDesign
steps:
- name: checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: cache dependencies
id: cache
uses: actions/cache@v3
with:
path: "**/node_modules"
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}-storybook
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '20.15.1'
- name: depedency install
if: steps.cache.outputs.cache-hit != 'true'
run: npm ci
- name: run lint
working-directory: ./HDesign
run: npm run lint
- name: publish to chromatic
working-directory: ./HDesign
id: chromatic
uses: chromaui/action@v1

Check failure on line 50 in .github/workflows/design-pull-request.yml

View workflow run for this annotation

GitHub Actions / Storybook Deployment

Invalid workflow file

The workflow is not valid. .github/workflows/design-pull-request.yml (Line: 50, Col: 9): Unexpected value 'uses' .github/workflows/design-pull-request.yml (Line: 51, Col: 9): Unexpected value 'with'
with:
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}
- name: comment PR
uses: thollander/actions-comment-pull-request@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
message: "πŸš€storybook: ${{ steps.chromatic.outputs.storybookUrl }}"