mirror of
https://github.com/BluemediaGER/muse.git
synced 2024-11-12 21:05:29 +01:00
Add type check workflow
This commit is contained in:
parent
417a5fb554
commit
03d5cfffd1
14
.github/workflows/build.yml
vendored
14
.github/workflows/build.yml
vendored
|
@ -1,8 +1,6 @@
|
|||
name: Lint
|
||||
|
||||
on:
|
||||
push:
|
||||
pull_request:
|
||||
on: push
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
@ -13,15 +11,7 @@ jobs:
|
|||
- uses: actions/setup-node@v2
|
||||
with:
|
||||
node-version: '16'
|
||||
- name: Cache dependencies
|
||||
uses: actions/cache@v1
|
||||
with:
|
||||
path: ./node_modules
|
||||
key: ${{ runner.OS }}-dependencies-${{ hashFiles('**/yarn.lock') }}
|
||||
restore-keys: |
|
||||
${{ runner.OS }}-dependencies-${{ env.cache-name }}-
|
||||
${{ runner.OS }}-dependencies-
|
||||
${{ runner.OS }}-
|
||||
cache: 'yarn'
|
||||
- name: Install dependencies
|
||||
run: yarn install
|
||||
- name: Generate Prisma client
|
||||
|
|
20
.github/workflows/type-check.yml
vendored
Normal file
20
.github/workflows/type-check.yml
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
name: Type Check
|
||||
|
||||
on: push
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Type Check
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- uses: actions/setup-node@v2
|
||||
with:
|
||||
node-version: '16'
|
||||
cache: 'yarn'
|
||||
- name: Install dependencies
|
||||
run: yarn install
|
||||
- name: Generate Prisma client
|
||||
run: yarn prisma generate
|
||||
- name: Run type check
|
||||
run: yarn tsc
|
|
@ -5,14 +5,12 @@
|
|||
"module": "ES2020",
|
||||
"moduleResolution": "node",
|
||||
"declaration": true,
|
||||
"outDir": "dist",
|
||||
"declarationDir": "dts",
|
||||
"strict": true,
|
||||
"experimentalDecorators": true,
|
||||
"emitDecoratorMetadata": true,
|
||||
"esModuleInterop": true,
|
||||
"sourceMap": true,
|
||||
"resolveJsonModule": true
|
||||
"resolveJsonModule": true,
|
||||
"noEmit": true
|
||||
},
|
||||
"include": ["src"],
|
||||
"exclude": ["node_modules"]
|
||||
|
|
Loading…
Reference in a new issue