Skip to content

Merge pull request #7 from PoliNetworkOrg/dependabot/npm_and_yarn/vit… #19

Merge pull request #7 from PoliNetworkOrg/dependabot/npm_and_yarn/vit…

Merge pull request #7 from PoliNetworkOrg/dependabot/npm_and_yarn/vit… #19

Workflow file for this run

name: Deploy on GitHub Pages
on:
push:
branches:
- main
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- uses: pnpm/action-setup@v2
name: Install pnpm
id: pnpm-install
with:
version: 8
run_install: false
- name: Get pnpm store directory
id: pnpm-cache
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm run build-docs
- name: Deploy
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: storybook-static