move app testing in front of TS build steps to see if that makes any difference
parent
df7c92080f
commit
f869b53730
|
|
@ -16,7 +16,11 @@ jobs:
|
||||||
uses: actions/setup-node@v1
|
uses: actions/setup-node@v1
|
||||||
with:
|
with:
|
||||||
node-version: ${{ matrix.node-version }}
|
node-version: ${{ matrix.node-version }}
|
||||||
- name: npm ci
|
- name: install testing dependencies
|
||||||
|
run: npm i
|
||||||
|
- name: test all apps and widgets
|
||||||
|
run: npm run test
|
||||||
|
- name: install typescript dependencies
|
||||||
working-directory: ./typescript
|
working-directory: ./typescript
|
||||||
run: npm ci
|
run: npm ci
|
||||||
- name: build types
|
- name: build types
|
||||||
|
|
@ -24,8 +28,4 @@ jobs:
|
||||||
run: npm run build:types
|
run: npm run build:types
|
||||||
- name: build all TS apps and widgets
|
- name: build all TS apps and widgets
|
||||||
working-directory: ./typescript
|
working-directory: ./typescript
|
||||||
run: npm run build
|
run: npm run build
|
||||||
- name: install testing dependencies
|
|
||||||
run: npm i
|
|
||||||
- name: test all apps and widgets
|
|
||||||
run: npm run test
|
|
||||||
Loading…
Reference in New Issue