Multithread validate-typescript

This commit is contained in:
Marc Rousavy 2021-02-23 14:03:39 +01:00
parent 38bdcef721
commit e4d5d5dac5

View File

@ -19,7 +19,7 @@ on:
- 'package.json' - 'package.json'
jobs: jobs:
build: node_modules:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
@ -33,8 +33,13 @@ jobs:
run: yarn run: yarn
- name: Install modules (example/) - name: Install modules (example/)
run: yarn example run: yarn example
tsc:
needs: node_modules
steps:
- name: Run TypeScript - name: Run TypeScript
run: npx tsc run: npx tsc
eslint:
needs: node_modules
steps:
- name: Run ESLint - name: Run ESLint
run: yarn lint run: yarn lint
# TODO: Run SwiftLint