From 7871c7676b66ad435094b3479d69e735cbc770cb Mon Sep 17 00:00:00 2001 From: alejandrojnm Date: Tue, 21 Mar 2023 09:53:03 +0000 Subject: [PATCH] remove the github actions to run test Signed-off-by: alejandrojnm --- .github/workflows/workflow.yml | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 .github/workflows/workflow.yml diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml deleted file mode 100644 index d3b7212..0000000 --- a/.github/workflows/workflow.yml +++ /dev/null @@ -1,21 +0,0 @@ -on: [push, pull_request] -name: Test and lint - -jobs: - - lint: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@master - - run: npm test - - package_check: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@master - - name: "Ensure that code has been packaged and commited" - run: |- - npm install - npm run package - git diff --exit-code dist/index.js || \ - (echo -e "\nPlease run 'npm run package' and commit the results" && exit 1) \ No newline at end of file