GitHub actions: env CI variable is already set to true by default.
[e-mobility-charging-stations-simulator.git] / .github / workflows / lint.yml
CommitLineData
5e427b78
JB
1name: Lint CI
2
a0fd7630
JB
3on:
4 push:
76fbb7f0 5 branches:
a0fd7630
JB
6 - master
7 pull_request:
8 branches:
9 - master
5e427b78
JB
10
11jobs:
1d7b3acb 12 lint:
5e427b78
JB
13 runs-on: ubuntu-latest
14
15 strategy:
16 matrix:
17 node-version: [14.x]
18
19 steps:
20 - uses: actions/checkout@v2
21 - name: Use Node.js ${{ matrix.node-version }}
22 uses: actions/setup-node@v1
23 with:
24 node-version: ${{ matrix.node-version }}
d8fb4c44
JB
25 - name: npm install
26 run: npm ci
27 - name: npm run lint
28 run: npm run lint