Delete pullrequest.yml
authorAlessandro Pio Ardizio <alessandroardizio94@gmail.com>
Sun, 7 Feb 2021 09:59:54 +0000 (10:59 +0100)
committerGitHub <noreply@github.com>
Sun, 7 Feb 2021 09:59:54 +0000 (10:59 +0100)
.github/workflows/pullrequest.yml [deleted file]

diff --git a/.github/workflows/pullrequest.yml b/.github/workflows/pullrequest.yml
deleted file mode 100644 (file)
index a055b0b..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-name: NodeCI
-
-on: [pull_request]
-
-jobs:
-  build:
-    runs-on: ubuntu-latest
-
-    strategy:
-      matrix:
-        node-version: [12.x, 14.x]
-
-    steps:
-      - uses: actions/checkout@v1
-      - name: Use Node.js ${{ matrix.node-version }}
-        uses: actions/setup-node@v1
-        with:
-          node-version: ${{ matrix.node-version }}
-      - name: npm install, build, and test
-        run: |
-          npm ci
-          npm run build --if-present
-          npm run test
-        env:
-          CI: true