Run jobs for CI in parallel (#1222)
This commit is contained in:
parent
145cf56a2b
commit
c3e84021cf
1 changed files with 36 additions and 5 deletions
41
.github/workflows/main.yml
vendored
41
.github/workflows/main.yml
vendored
|
@ -5,7 +5,7 @@ on:
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [master]
|
branches: [master]
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
setup:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Check out Admin UI
|
- name: Check out Admin UI
|
||||||
|
@ -18,7 +18,38 @@ jobs:
|
||||||
check-latest: true
|
check-latest: true
|
||||||
cache: npm
|
cache: npm
|
||||||
|
|
||||||
- run: npm ci
|
- name: Cache Node modules
|
||||||
- run: npm run lint
|
uses: actions/cache@v2
|
||||||
- run: npm run test
|
with:
|
||||||
- run: npm run build
|
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 }}
|
||||||
|
|
Loading…
Reference in a new issue