Skip to content

chore(deps): bump ws from 7.5.9 to 7.5.10 in /website (#409) #15

chore(deps): bump ws from 7.5.9 to 7.5.10 in /website (#409)

chore(deps): bump ws from 7.5.9 to 7.5.10 in /website (#409) #15

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