ci: build the frontend in GH actions
It should help catch bugs such as bundle bloat easier.
This commit is contained in:
parent
3a871cbed8
commit
8cba7e91d3
|
@ -1,10 +1,10 @@
|
||||||
name: Linter
|
name: Simple CI
|
||||||
|
|
||||||
on: [pull_request]
|
on: [pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
run-linter:
|
run-ci:
|
||||||
name: Run Linter
|
name: Build Frontend
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
@ -13,3 +13,4 @@ jobs:
|
||||||
node-version: '12.x'
|
node-version: '12.x'
|
||||||
- run: npm install
|
- run: npm install
|
||||||
- run: npm run lint
|
- run: npm run lint
|
||||||
|
- run: make
|
||||||
|
|
Loading…
Reference in New Issue