From c3e84021cf9cd19546e47948b51655ca31863732 Mon Sep 17 00:00:00 2001 From: Jon Koops Date: Mon, 27 Sep 2021 10:56:35 +0200 Subject: [PATCH] Run jobs for CI in parallel (#1222) --- .github/workflows/main.yml | 41 +++++++++++++++++++++++++++++++++----- 1 file changed, 36 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0913cbed60..6d965eea7b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -5,7 +5,7 @@ on: pull_request: branches: [master] jobs: - build: + setup: runs-on: ubuntu-latest steps: - name: Check out Admin UI @@ -18,7 +18,38 @@ jobs: check-latest: true cache: npm - - run: npm ci - - run: npm run lint - - run: npm run test - - run: npm run build + - name: Cache Node modules + uses: actions/cache@v2 + with: + path: node_modules + key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }} + + - name: Install dependencies + run: test -d node_modules || npm ci + + - name: Cache setup + uses: actions/cache@v2 + with: + path: ./* + key: ${{ github.sha }} + + run: + needs: setup + runs-on: ubuntu-latest + strategy: + matrix: + command: [lint, test, build] + steps: + - name: Restore setup + uses: actions/cache@v2 + with: + path: ./* + key: ${{ github.sha }} + + - name: Set up Node + uses: actions/setup-node@v2 + with: + node-version: 16 + + - name: Run ${{ matrix.command }} task + run: npm run ${{ matrix.command }}