Skip to content

chore(deps): bump semver from 6.3.0 to 6.3.1 (#393) #5

chore(deps): bump semver from 6.3.0 to 6.3.1 (#393)

chore(deps): bump semver from 6.3.0 to 6.3.1 (#393) #5

Workflow file for this run

name: Build and publish website
on:
push:
branches:
- "master"
jobs:
pages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: 'yarn'
- name: Install library dependencies
run: yarn install --frozen-lockfile
- name: Build library
run: yarn build
- name: Install website dependencies
run: yarn --cwd website install --frozen-lockfile
- name: Build website
run: yarn --cwd website build
- name: Deploy to gh-pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: website/build