Run github actions in parallel

This commit is contained in:
Kenny Daniel 2024-01-08 10:13:06 -08:00
parent 955a5f0653
commit 271cc72db9
No known key found for this signature in database
GPG Key ID: 6A3C5E318BE71391

@ -4,11 +4,23 @@ on:
push:
jobs:
hyparquet:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: npm i
- run: npm run lint
- run: npm run typecheck
typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: npm i
- run: tsc
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: npm i
- run: npm test