Skip to content

OPHJOD-260: Add storybook-static to ignore for eslint #10

OPHJOD-260: Add storybook-static to ignore for eslint

OPHJOD-260: Add storybook-static to ignore for eslint #10

Workflow file for this run

name: Build and Publish Storybook to GitHub Pages
on:
workflow_dispatch:
push:
branches:
- main
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: lts/iron
cache: npm
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: 'npx eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0'
- name: Prettier
run: npx prettier . --check
- name: Unit tests
run: npx vitest --run
- name: Run build
run: npm run build:storybook
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: storybook-static/
deploy:
name: Deploy
if: github.ref == 'refs/heads/main' || github.event_name == 'workflow_dispatch'
environment: development
runs-on: ubuntu-latest
needs:
- build
steps:
- name: Deploy to GitHub Pages
uses: actions/deploy-pages@v4
with:
token: ${{ github.token }}