Skip to content

update node modules

update node modules #7

Workflow file for this run

name: Build and Deploy
on: push
jobs:
build-and-deploy:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./website
steps:
- name: Checkout
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Install and Build
run: |
yarn install --frozen-lockfile
yarn build-storybook
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: master
folder: docs-build
clean: true
target-folder: docs