-
Notifications
You must be signed in to change notification settings - Fork 33
83 lines (70 loc) · 1.56 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
name: Build
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
branches:
- main
jobs:
build:
runs-on: windows-latest
permissions: read-all
strategy:
matrix:
node-version: [20]
steps:
- uses: actions/checkout@v4
- name: Using Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: build-challenge Build
run: |
pushd build-challenge
npm ci
npm run mcaddon
popd
- name: custom-components Build
run: |
pushd custom-components
npm ci
npm run mcaddon
popd
- name: editor-basics Build
run: |
pushd editor-basics
npm ci
npm run mcaddon
popd
- name: editor-script-box Build
run: |
pushd editor-basics
npm ci
npm run mcaddon
popd
- name: howto-gallery Build
run: |
pushd howto-gallery
npm ci
npm run mcaddon
popd
- name: script-box Build
run: |
pushd script-box
npm ci
npm run mcaddon
popd
- name: ts-starter Build
run: |
pushd ts-starter
npm ci
npm run mcaddon
popd
- name: ts-starter-complete-cotta Build
run: |
pushd ts-starter-complete-cotta
npm ci
npm run mcaddon
popd