2020-06-27 09:04:08 +00:00
|
|
|
name: Lint Code Base
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2021-05-09 20:02:44 +00:00
|
|
|
branches: [ main, develop ]
|
2021-01-04 19:26:58 +00:00
|
|
|
pull_request:
|
2021-05-09 20:02:44 +00:00
|
|
|
branches: [ main, develop ]
|
2020-06-27 09:04:08 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Lint Code Base
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2021-05-06 19:48:41 +00:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-node@v2
|
|
|
|
with:
|
|
|
|
node-version: '14'
|
|
|
|
- run: npm install
|
|
|
|
- run: npm run lint
|
2020-06-27 09:04:08 +00:00
|
|
|
|