2023-04-19 23:56:55 +02:00
|
|
|
name: lint-js
|
|
|
|
|
2023-10-04 10:18:24 +02:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- '**.js'
|
|
|
|
- '**.json'
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- '**.js'
|
|
|
|
- '**.json'
|
2023-04-19 23:56:55 +02:00
|
|
|
|
|
|
|
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
|