From 834e559f1c92fbf654266c5a84922379d32eb97e Mon Sep 17 00:00:00 2001 From: Theodore Kruczek Date: Sat, 13 Jan 2024 00:38:28 -0500 Subject: [PATCH] ci: :adhesive_bandage: make ci pipeline sequential --- .github/workflows/ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 37bc707..da1ce8c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,6 +16,7 @@ jobs: with: github_token: ${{ secrets.GITHUB_TOKEN }} lint: + needs: compliance runs-on: ubuntu-latest steps: - uses: actions/checkout@v4.1.1 @@ -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: @@ -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: