Automated cherry pick of #373: relase note of v3.11.8 #462
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Building and test for PR | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
cache: yarn | |
- name: "Install dependencies" | |
shell: bash | |
run: | | |
yarn install --frozen-lockfile | |
- name: Build public site | |
shell: bash | |
run: | | |
echo $PWD | |
yarn build |