-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (35 loc) · 838 Bytes
/
eslint.yml
File metadata and controls
42 lines (35 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: JS Linting
on:
push:
branches:
- develop
- main
paths:
- '**.js'
pull_request:
branches:
- develop
paths:
- '**.js'
jobs:
eslint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup node and npm cache
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: npm
- name: Install Node dependencies
run: npm ci --omit=optional
- name: Get updated JS files
id: changed-files
uses: tj-actions/changed-files@v44
with:
files: |
**/*.js
- name: Run JS linting
if: ${{ steps.changed-files.outputs.any_changed == 'true' }}
run: ./node_modules/.bin/10up-toolkit lint-js ${{ steps.changed-files.outputs.all_changed_files }}