Skip to content

Commit

Permalink
parallel gha
Browse files Browse the repository at this point in the history
  • Loading branch information
nickrttn committed Apr 9, 2024
1 parent 2cd3833 commit f5fec90
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion .github/workflows/ci-monolib.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,26 @@ on:
branches: [main]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 18
- run: corepack yarn --immutable
- run: corepack yarn build

lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 18
- run: corepack yarn --immutable
- run: corepack yarn lint

test:
runs-on: ubuntu-latest
steps:
Expand All @@ -14,4 +34,4 @@ jobs:
with:
node-version: 18
- run: corepack yarn --immutable
- run: corepack yarn check
- run: corepack yarn test

0 comments on commit f5fec90

Please sign in to comment.