From: Jérôme Benoit Date: Sat, 25 Apr 2020 00:14:50 +0000 (+0200) Subject: Rename linting GitHub action file to a more sensible name. X-Git-Tag: v1.0.1-0~342 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=fa6fdaf22845c046d80fcd5c723ac627d2ca04d4;p=e-mobility-charging-stations-simulator.git Rename linting GitHub action file to a more sensible name. Signed-off-by: Jérôme Benoit --- diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml deleted file mode 100644 index 1a8f851b..00000000 --- a/.github/workflows/nodejs.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: Node CI - -on: [push] - -jobs: - build: - - runs-on: ubuntu-latest - - strategy: - matrix: - node-version: [13.x, 14.x] - - steps: - - uses: actions/checkout@v2 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 - with: - node-version: ${{ matrix.node-version }} - - name: npm install and lint - run: | - npm ci - npm run lint - env: - CI: true