From 1c769b1c1a2b7eb69834fb4860df4880806f79c0 Mon Sep 17 00:00:00 2001 From: nandhoman <55098377+nandhoman@users.noreply.github.com> Date: Mon, 27 Apr 2020 22:00:19 +0200 Subject: [PATCH] Delete nodejs2.yml --- .github/workflows/nodejs2.yml | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 .github/workflows/nodejs2.yml diff --git a/.github/workflows/nodejs2.yml b/.github/workflows/nodejs2.yml deleted file mode 100644 index 016169c..0000000 --- a/.github/workflows/nodejs2.yml +++ /dev/null @@ -1,27 +0,0 @@ -# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node -# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions - -name: Node.js CI - -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - -jobs: - build: - - runs-on: windows-latest - - steps: - - uses: actions/checkout@v2 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 - with: - node-version: 12.x - - run: npm ci - - run: npm run build --if-present - - run: npm test - env: - CI: true