forked from latticexyz/mud
-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (41 loc) · 1.14 KB
/
templates.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
name: Templates
on:
push:
branches:
- main
paths-ignore:
- "docs/**"
pull_request:
paths-ignore:
- "docs/**"
env:
# Fix OOM errors with sourcemaps in phaser client
# https://github.com/latticexyz/mud/issues/1019
NODE_OPTIONS: --max-old-space-size=8192
jobs:
build:
name: Build template
runs-on: ubuntu-latest
strategy:
matrix:
template: [vanilla, react, react-ecs, phaser, threejs]
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup
uses: ./.github/actions/setup
- name: Build
uses: ./.github/actions/build
- name: Install template dependencies
working-directory: ./templates/${{ matrix.template }}
run: pnpm install
- name: Build template
working-directory: ./templates/${{ matrix.template }}
run: pnpm run build
- name: Outdated files, run `pnpm build` and commit them
uses: ./.github/actions/require-empty-diff
- name: Run tests
working-directory: ./templates/${{ matrix.template }}
run: pnpm run test