mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
1267068d9c
In the hope we can make the CI runs a bit more efficient and energy conscious, by only running when relevant files have changed.
25 lines
383 B
YAML
25 lines
383 B
YAML
name: lint-js
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- '**.js'
|
|
- '**.json'
|
|
pull_request:
|
|
paths:
|
|
- '**.js'
|
|
- '**.json'
|
|
|
|
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
|