Skip to content

Commit

Permalink
Run github actions in parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
platypii committed Jan 8, 2024
1 parent 2fe58c6 commit 310c92f
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,23 @@ on:
push:

jobs:
hyllama:
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

0 comments on commit 310c92f

Please sign in to comment.