mirror of
https://github.com/tubearchivist/browser-extension.git
synced 2024-11-05 11:40:13 +00:00
17 lines
310 B
YAML
17 lines
310 B
YAML
|
name: lint_js
|
||
|
|
||
|
on: [pull_request, push]
|
||
|
|
||
|
jobs:
|
||
|
check:
|
||
|
name: lint_js
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- uses: actions/setup-node@v3
|
||
|
with:
|
||
|
node-version: '16'
|
||
|
- run: npm ci
|
||
|
- run: npm run lint
|
||
|
- run: npm run format -- --check
|