mirror of
https://github.com/asadbek064/hyparquet.git
synced 2026-01-10 04:56:38 +00:00
Run github actions in parallel
This commit is contained in:
parent
955a5f0653
commit
271cc72db9
16
.github/workflows/ci.yml
vendored
16
.github/workflows/ci.yml
vendored
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user