Skip to content

Commit 5c5d96e

Browse files
more explicit typescript compilation
1 parent e3dd1a1 commit 5c5d96e

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

.github/workflows/typescript.yml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,19 @@ jobs:
99
- name: Checkout Repo
1010
uses: actions/[email protected]
1111

12-
- name: Setting up developer environment
12+
- name: NPM Install (Binary Package)
13+
run: npm install
14+
working-directory: ./Package
15+
- name: NPM Install (Modules)
1316
run: |
1417
export BABYLON_NO_CMAKE_POSTINSTALL=1
15-
node setup_dev.js
16-
working-directory: ./
17-
18+
npm install
19+
working-directory: ./Modules/@babylonjs/react-native
20+
- name: NPM Install (Playground)
21+
run: |
22+
export BABYLON_NO_CMAKE_POSTINSTALL=1
23+
npm install
24+
working-directory: ./Apps/Playground
1825
- name: Gulp
1926
run: npx gulp buildAssembled
2027
working-directory: ./Package

0 commit comments

Comments
 (0)