Skip to content

Update to eslint 9 (#521) #242

Update to eslint 9 (#521)

Update to eslint 9 (#521) #242

name: Storybook Build
on:
push:
branches:
- master
jobs:
build_deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: npm
- name: Install Dependencies
run: npm ci
- name: Build
run: npm run build
- name: Deploy
if: success()
uses: crazy-max/ghaction-github-pages@v3
with:
target_branch: gh-pages
build_dir: storybook-static
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}