spike: use babel preset typescript to transpile app (#4142)

* use babel-preset-typescript

* run type-check in release process
This commit is contained in:
Jack Kavanagh
2021-11-03 09:06:52 +01:00
committed by GitHub
parent 5c02273757
commit 28378dc3fd
15 changed files with 3322 additions and 116 deletions

View File

@@ -30,6 +30,8 @@ jobs:
node-version: ${{ steps.nvm.outputs.NVMRC }}
- name: Bootstrap packages
run: npm run bootstrap
- name: Type checks
run: npm run type-check
- name: Run tests
run: npm test

View File

@@ -54,6 +54,9 @@ jobs:
- name: Lint markdown
run: npm run lint:markdown
- name: Type checks
run: npm run type-check
- name: Run tests
run: npm test