From f6a0c1f26efaf48e627c9f60adcc67e181549ed7 Mon Sep 17 00:00:00 2001 From: Francisco Avila Date: Mon, 7 Sep 2020 16:13:42 -0700 Subject: [PATCH] (ci) Delete "push" Github action (#163) Remove Github workflow "push" which ran tests for every commit. Tests now run through Travis CI and will run additional checks Travis CI as well. --- .github/workflows/push.yml | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 .github/workflows/push.yml diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml deleted file mode 100644 index 24bf522c..00000000 --- a/.github/workflows/push.yml +++ /dev/null @@ -1,15 +0,0 @@ -on: push -name: check -jobs: - test: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@master - - name: install - uses: docker://node:10.15.3 - with: - args: npm install - - name: test - uses: docker://node:10.15.3 - with: - args: npm test