-
Notifications
You must be signed in to change notification settings - Fork 4
55 lines (48 loc) · 1.21 KB
/
eslint-back.yml
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
43
44
45
46
47
48
49
50
51
52
53
54
55
name: ESLint Backend Check
on:
pull_request:
branches: [ main ]
types:
- opened
- synchronize
- reopened
push:
branches:
- main
workflow_dispatch: {}
jobs:
check-paths:
runs-on: ubuntu-latest
outputs:
run-lint: ${{ steps.paths-filter.outputs.backend }}
steps:
- uses: actions/checkout@v4
- id: paths-filter
uses: dorny/paths-filter@v2
with:
filters: |
backend:
- 'backend/**/*.js'
- 'backend/**/*.md'
lint-backend:
needs: check-paths
if: needs.check-paths.outputs.run-lint == 'true'
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Cache node modules
uses: actions/cache@v3
with:
path: ./backend/node_modules
key: ${{ runner.os }}-back-node-${{ hashFiles('./backend/package.json') }}
- name: Install dependencies
run: npm install
working-directory: ./backend
- name: Run ESLint
run: npm run lint
working-directory: ./backend