From 97448f126aef7e17a5757f3baa36d3dc4c0d1e2c Mon Sep 17 00:00:00 2001 From: Francisco Hodge Date: Mon, 26 Aug 2019 21:07:42 -0400 Subject: [PATCH] Delete nodejs.yml --- .github/workflows/nodejs.yml | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 .github/workflows/nodejs.yml diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml deleted file mode 100644 index c99d04d9..00000000 --- a/.github/workflows/nodejs.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: Node CI - -on: - push: - branches: - - master - - staging - -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - - name: Use latest Node.js - uses: actions/setup-node@v1 - with: - node-version: latest - - name: npm install, build, and test - run: | - npm install -g codecov - npm install - npm run start -- --testMode - npm run demo - npm run coverage - codecov - env: - CI: true