-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🚀 auto deploy storybook to github pages
- Loading branch information
1 parent
a7e0c0c
commit e2f29d8
Showing
1 changed file
with
59 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
name: Build and Deploy Storybook to Github pages | ||
|
||
on: | ||
pull_request: | ||
branches: '**' | ||
# push: | ||
# branches: | ||
# - main | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: read | ||
pages: write | ||
id-token: write | ||
|
||
jobs: | ||
build_and_deploy: | ||
name: Build and Deploy Storybook to Github pages | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 10 | ||
|
||
steps: | ||
- name: Git checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '16.x' | ||
|
||
- name: Cache dependencies | ||
id: cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
node_modules | ||
~/.cache/Cypress | ||
key: deps-node-modules-${{ hashFiles('**/yarn.lock') }} | ||
|
||
- name: Install dependencies | ||
if: steps.cache.outputs.cache-hit != 'true' | ||
run: yarn install --frozen-lockfile | ||
|
||
- name: Test | ||
run: yarn test | ||
|
||
- name: Build storybook | ||
shell: bash | ||
run: yarn build-storybook | ||
|
||
- name: Upload | ||
uses: actions/upload-pages-artifact@v2 | ||
with: | ||
path: storybook-static | ||
|
||
- name: Deploy to GitHub Pages | ||
uses: actions/deploy-pages@v3 | ||
with: | ||
token: ${{ github.token }} |