Skip to content

Main

Main #40

Workflow file for this run

name: PR Build
on:
pull_request:
branches:
- 'release'
- 'main'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
- uses: actions/setup-node@v3
with:
node-version: '16.x'
cache: 'yarn'
registry-url: https://registry.npmjs.org/
- run: yarn install --frozen-lockfile # optional, --immutable
- run: yarn copy
- run: yarn build