move app testing in front of TS build steps to see if that makes any difference

pull/1052/head
Sebastian Di Luzio 2022-01-20 21:41:41 +01:00
parent df7c92080f
commit f869b53730
1 changed files with 6 additions and 6 deletions

View File

@ -16,7 +16,11 @@ jobs:
uses: actions/setup-node@v1
with:
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
run: npm ci
- name: build types
@ -24,8 +28,4 @@ jobs:
run: npm run build:types
- name: build all TS apps and widgets
working-directory: ./typescript
run: npm run build
- name: install testing dependencies
run: npm i
- name: test all apps and widgets
run: npm run test
run: npm run build