From 326ec5c0e37a13e937b0d2ec5054147b7cd0dc02 Mon Sep 17 00:00:00 2001 From: Matteo Pagliazzi Date: Sat, 21 Sep 2019 10:57:24 +0200 Subject: [PATCH] repo(gh actions): disable --- .github/workflows/nodejs.yml | 25 ------------------------- 1 file changed, 25 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 f1b3e7a7af..0000000000 --- a/.github/workflows/nodejs.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: Node CI - -on: [push] - -jobs: - build: - - runs-on: ubuntu-latest - - strategy: - matrix: - node-version: [12.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 and test - run: | - npm install - npm test - env: - CI: true