Skip to content
This repository has been archived by the owner on May 30, 2024. It is now read-only.

Update actions/checkout digest to a5ac7e5 #148

Update actions/checkout digest to a5ac7e5

Update actions/checkout digest to a5ac7e5 #148

Workflow file for this run

name: build site
on:
pull_request:
branches:
- main
- develop
- feature/docusaurus
push:
branches:
- feature/docusaurus
jobs:
build:
if: "! contains(toJSON(github.event.commits.*.message), '[ci skip]')"
name: Build docusaurus Site
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4
- uses: actions/setup-node@v3
with:
node-version: "16"
- name: install yarn
run: npm i -g --force yarn
- name: restore yarn
run: |
cd $GITHUB_WORKSPACE/src
yarn install
- name: yarn build
run: |
cd $GITHUB_WORKSPACE/src
yarn run build