Skip to content

chore(deps): bump msgpackr from 1.8.1 to 1.10.1 (#97) #40

chore(deps): bump msgpackr from 1.8.1 to 1.10.1 (#97)

chore(deps): bump msgpackr from 1.8.1 to 1.10.1 (#97) #40

Workflow file for this run

name: website
on:
push:
branches: [main]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install package dependencies
run: yarn install
- run: yarn test:ci
- name: Build Gatsby site
run: yarn build
- name: Deploy to GitHub Pages
if: success()
uses: crazy-max/ghaction-github-pages@v2
with:
target_branch: gh-pages
build_dir: packages/example/public
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}