Fix CHANGELOG.md compare link generation
[e-mobility-charging-stations-simulator.git] / .github / workflows / lint.yml
index 62dc754fb6f7095c45a161e36b240ade3b9796e5..5773a679da2471706cab73841be0a95387b1d681 100644 (file)
@@ -1,10 +1,15 @@
 name: Lint CI
 
-on: [pull_request, push]
+on:
+  # push:
+  #   branches:
+  #     - master
+  pull_request:
+    branches:
+      - master
 
 jobs:
   lint:
-
     runs-on: ubuntu-latest
 
     strategy:
@@ -14,12 +19,10 @@ jobs:
     steps:
     - uses: actions/checkout@v2
     - name: Use Node.js ${{ matrix.node-version }}
-      uses: actions/setup-node@v1
+      uses: actions/setup-node@v2
       with:
         node-version: ${{ matrix.node-version }}
-    - name: npm install and run lint
-      run: |
-        npm ci
-        npm run lint
-      env:
-        CI: true
+    - name: npm install
+      run: npm ci
+    - name: npm run lint
+      run: npm run lint