OPHJOD-260: Add storybook-static to ignore for eslint #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: 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 }} |