From 1668e2b8f97c565c943c98916ec4e946ee315e48 Mon Sep 17 00:00:00 2001 From: Crafterzman Date: Fri, 23 Apr 2021 10:49:47 -0700 Subject: [PATCH] Delete NodeCI.yml --- .github/workflows/NodeCI.yml | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 .github/workflows/NodeCI.yml diff --git a/.github/workflows/NodeCI.yml b/.github/workflows/NodeCI.yml deleted file mode 100644 index 09b1d56a9..000000000 --- a/.github/workflows/NodeCI.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Node.js CI - -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - -jobs: - build: - - runs-on: ubuntu-latest - - strategy: - matrix: - node-version: [10.x, 12.x, 14.x, 15.x] - # Add/Remove versions as needed - - steps: - - uses: actions/checkout@v2 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 - with: - node-version: ${{ matrix.node-version }} - - run: npm ci - - run: npm run build --if-present