GitHub Actions: Split linting out, make other jobs dependent
This commit is contained in:
parent
d7b64cd986
commit
c44176f7f3
1 changed files with 29 additions and 0 deletions
29
.github/workflows/ci.yml
vendored
29
.github/workflows/ci.yml
vendored
|
@ -3,7 +3,33 @@ name: CI
|
||||||
on: [push]
|
on: [push]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
lint:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- run: lsb_release -a
|
||||||
|
- run: uname -a
|
||||||
|
- uses: actions/checkout@v1
|
||||||
|
- uses: actions/setup-node@v1
|
||||||
|
with:
|
||||||
|
node-version: '12.13.0'
|
||||||
|
- run: npm install -g yarn@1.22.0
|
||||||
|
|
||||||
|
- name: Cache node modules
|
||||||
|
uses: actions/cache@v1
|
||||||
|
env:
|
||||||
|
cache-name: cache-node-modules
|
||||||
|
with:
|
||||||
|
path: node_modules
|
||||||
|
key: ${{ runner.os }}-node_modules-${{ hashFiles('yarn.lock') }}-${{ hashFiles('patches/*') }}
|
||||||
|
|
||||||
|
- run: yarn install --frozen-lockfile
|
||||||
|
- run: yarn generate
|
||||||
|
- run: yarn lint
|
||||||
|
- run: yarn lint-deps
|
||||||
|
|
||||||
macos:
|
macos:
|
||||||
|
needs: lint
|
||||||
runs-on: macos-latest
|
runs-on: macos-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
@ -35,9 +61,11 @@ jobs:
|
||||||
NODE_ENV: production
|
NODE_ENV: production
|
||||||
|
|
||||||
linux:
|
linux:
|
||||||
|
needs: lint
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
- run: lsb_release -a
|
||||||
- run: uname -a
|
- run: uname -a
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- uses: actions/setup-node@v1
|
- uses: actions/setup-node@v1
|
||||||
|
@ -70,6 +98,7 @@ jobs:
|
||||||
NODE_ENV: production
|
NODE_ENV: production
|
||||||
|
|
||||||
windows:
|
windows:
|
||||||
|
needs: lint
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
Loading…
Reference in a new issue