Skip to content

Commit

Permalink
ci: 🩹 make ci pipeline sequential
Browse files Browse the repository at this point in the history
  • Loading branch information
thkruz committed Jan 13, 2024
1 parent 21a2971 commit 834e559
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
lint:
needs: compliance
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
Expand All @@ -37,11 +38,10 @@ jobs:
${{ runner.os }}-build-
${{ runner.os }}-
- run: npm ci
- run: npm ci --ignore-scripts

- run: npm run lint
build:
name: build
needs: lint
runs-on: ubuntu-latest
steps:
Expand All @@ -64,9 +64,10 @@ jobs:
${{ runner.os }}-build-
${{ runner.os }}-
- run: npm ci --ignore-scripts

- run: npm run build
test:
name: test
needs: build
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 834e559

Please sign in to comment.