forked from Ericsson/CodeCompass
-
Notifications
You must be signed in to change notification settings - Fork 2
42 lines (31 loc) · 1.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
name: Frontend linting
on: [push, pull_request, workflow_dispatch]
permissions: read-all
jobs:
linting:
runs-on: ubuntu-20.04
defaults:
run:
working-directory: ./webgui-new/
steps:
- name: checkout
uses: actions/checkout@v3
- name: setup Node.JS
uses: actions/setup-node@v3
with:
node-version: 20
cache: 'npm'
cache-dependency-path: ./webgui-new/package-lock.json
- name: cache node modules
id: cache_node_modules
uses: actions/cache@v3
with:
path: ./webgui-new/node_modules
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-npm-
- name: install npm
if: steps.cache_node_modules.outputs.cache-hit != 'true'
run: npm install
- name: run linter
run: npm run lint