mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
17 lines
290 B
YAML
17 lines
290 B
YAML
|
name: lint-js
|
||
|
|
||
|
on: [push, pull_request]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
if: ${{ github.ref != 'refs/heads/l10n_development' }}
|
||
|
runs-on: ubuntu-22.04
|
||
|
steps:
|
||
|
- uses: actions/checkout@v1
|
||
|
|
||
|
- name: Install NPM deps
|
||
|
run: npm ci
|
||
|
|
||
|
- name: Run formatting check
|
||
|
run: npm run lint
|