X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=.github%2Fworkflows%2Flint.yml;h=879fe8c5d86eeff6ed4c93067140962b5e265fa0;hb=a0fd7630389363e3d73e1974c1f842a1fe5742bb;hp=62dc754fb6f7095c45a161e36b240ade3b9796e5;hpb=1d7b3acb21a72485747ebf67e20524859893ab09;p=e-mobility-charging-stations-simulator.git diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 62dc754f..879fe8c5 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -1,9 +1,17 @@ name: Lint CI -on: [pull_request, push] +on: + push: + branches-ignore: + - master + pull_request: + branches: + - master jobs: lint: + env: + CI: true runs-on: ubuntu-latest @@ -17,9 +25,7 @@ jobs: uses: actions/setup-node@v1 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