-
-
Notifications
You must be signed in to change notification settings - Fork 217
77 lines (62 loc) · 2.06 KB
/
linting.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
name: Lint
on:
pull_request:
branches:
- master
permissions:
checks: write
contents: write
env:
BRANCH_NAME: ${{ github.head_ref }}
BASE_NAME: ${{ github.base_ref }}
jobs:
lint-python:
name: Lint Python
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Get changed python files between base and head
run: >
echo "CHANGED_FILES=$(echo $(git diff --name-only ${{ github.event.pull_request.base.sha }}..${{ github.event.pull_request.head.sha }} -- | grep \.py))" >> $GITHUB_ENV
- name: Output changed python file
run: echo ${{ env.CHANGED_FILES }}
- name: Set up Python
uses: actions/setup-python@v1
if: ${{ env.CHANGED_FILES }}
with:
python-version: 3.8
- name: Install Python dependencies
if: ${{ env.CHANGED_FILES }}
run: pip install flake8
- name: Run flake8 linter
if: ${{ env.CHANGED_FILES }}
uses: wearerequired/lint-action@v2
with:
flake8: true
flake8_auto_fix: false
flake8_args: ${{ steps.python-files.outputs.python-file-names }}
# If this is in the same step as python linting the annotations don't show up...sad face
lint-javascript:
name: Lint Javascript
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Node.js
if: ${{ steps.javascript-files.outputs.javascript-file-present == 'true' }}
uses: actions/setup-node@v3
with:
node-version: 14
- name: Install Node.js dependencies
if: ${{ steps.javascript-files.outputs.javascript-file-present == 'true' }}
run: yarn install --frozen-lockfile
- uses: sibiraj-s/action-eslint@v2
if: ${{ steps.javascript-files.outputs.javascript-file-present == 'true' }}
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
annotations: true