forked from latticexyz/mud
-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (42 loc) · 1.5 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name: Build
# Verifies build artifacts in pull requests.
# Note: this workflow does not trigger on pushes to main,
# because the release workflow includes a build+verify step.
on:
pull_request:
env:
NODE_OPTIONS: "--max-old-space-size=4096"
jobs:
build:
name: Build and validate artifacts
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
fetch-depth: 0
- name: Check for changes outside docs
id: check_changes
run: ./.github/scripts/check_changes_outside_docs.sh
- name: Setup
if: steps.check_changes.outputs.changes_outside_docs
uses: ./.github/actions/setup
- name: Clean
if: steps.check_changes.outputs.changes_outside_docs
shell: bash
run: pnpm turbo run clean --concurrency 10
- name: Build
if: steps.check_changes.outputs.changes_outside_docs
shell: bash
run: pnpm turbo run build --concurrency 10
- name: Outdated files, run `pnpm build` and commit them
if: steps.check_changes.outputs.changes_outside_docs
uses: ./.github/actions/require-empty-diff
- name: Build API docs
if: steps.check_changes.outputs.changes_outside_docs
shell: bash
run: pnpm docs:generate:api
- name: Outdated files, run `pnpm docs:generate:api` and commit them
if: steps.check_changes.outputs.changes_outside_docs
uses: ./.github/actions/require-empty-diff