Rename linting GitHub action file to a more sensible name.
authorJérôme Benoit <jerome.benoit@sap.com>
Sat, 25 Apr 2020 00:14:50 +0000 (02:14 +0200)
committerJérôme Benoit <jerome.benoit@sap.com>
Sat, 25 Apr 2020 00:14:50 +0000 (02:14 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
.github/workflows/nodejs.yml [deleted file]

diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml
deleted file mode 100644 (file)
index 1a8f851..0000000
+++ /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