From 40f57de5c2fd8c4770d1fd82c9ceb2ce2e83ac05 Mon Sep 17 00:00:00 2001 From: Jordan Scales Date: Tue, 21 Apr 2020 22:42:40 -0400 Subject: [PATCH] idk how github actions work --- .github/workflows/nodejs.yml | 29 ----------------------------- .travis.yml | 1 + 2 files changed, 1 insertion(+), 29 deletions(-) delete mode 100644 .github/workflows/nodejs.yml create mode 100644 .travis.yml diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml deleted file mode 100644 index d041332..0000000 --- a/.github/workflows/nodejs.yml +++ /dev/null @@ -1,29 +0,0 @@ -# Do a clean install of node dependencies and run tests across different versions of node - -name: Node.js CI - -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - -jobs: - build: - - runs-on: ubuntu-latest - - strategy: - matrix: - node-version: [10.x, 12.x] - - steps: - - uses: actions/checkout@v2 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 - with: - node-version: ${{ matrix.node-version }} - - run: npm ci - - run: npm test - env: - CI: true diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..587bd3e --- /dev/null +++ b/.travis.yml @@ -0,0 +1 @@ +language: node_js