Skip to content

GITHUB ACTION2

GITHUB ACTION2 #2

Workflow file for this run

name: Deploy Storybook to GitHub Pages
on:
push:
branches:
- feature/Web
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '18'
- name: Install dependencies
working-directory: ./src/Web
run: npm install
- name: Build Storybook
working-directory: ./src/Web
run: npm run build-storybook
- name: Deploy to GitHub Pages
working-directory: ./src/Web
uses: peaceiris/actions-gh-pages@v3

Check failure on line 31 in .github/workflows/storybook.yml

View workflow run for this annotation

GitHub Actions / Deploy Storybook to GitHub Pages

Invalid workflow file

The workflow is not valid. .github/workflows/storybook.yml (Line: 31, Col: 9): Unexpected value 'uses' .github/workflows/storybook.yml (Line: 32, Col: 9): Unexpected value 'with'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./storybook-static