feat(ci) move linting to its own step

This allows it to run in parallel, and should make the overall run
faster.
This commit is contained in:
Saúl Ibarra Corretgé 2022-10-03 09:03:07 +02:00 committed by Saúl Ibarra Corretgé
parent c56c5bd145
commit 230cbfac1e
1 changed files with 11 additions and 2 deletions

View File

@ -3,8 +3,8 @@ name: Simple CI
on: [pull_request]
jobs:
linux-build:
name: Build Frontend (Linux)
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
@ -20,6 +20,15 @@ jobs:
run: $(exit $(git status --porcelain --untracked-files=no | head -255 | wc -l)) || (echo "Dirty git tree"; git diff; exit 1)
- run: npm run lint
- run: for file in lang/*.json; do npx --yes jsonlint -q $file || exit 1; done
linux-build:
name: Build Frontend (Linux)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '16.x'
- run: npm install
- run: make
macos-ci:
name: Build Frontend (macOS)