Skip to content

chore(deps): update dependency @testing-library/jest-dom to v6.3.0 #753

chore(deps): update dependency @testing-library/jest-dom to v6.3.0

chore(deps): update dependency @testing-library/jest-dom to v6.3.0 #753

Workflow file for this run

name: Publish Storybook
on:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
deploy-storybook:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up node
uses: meza/action-setup-node-npm@main
with:
command: install
node-version: latest
cache-name: storybook
- name: Build Storybook
run: npm run storybook:build
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
# Upload entire repository
path: './storybook-static'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1