diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index dc3b66d..ea36232 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,10 +1,6 @@ -name: Node.js CI +name: Test -on: - push: - branches: [ $default-branch ] - pull_request: - branches: [ $default-branch ] +on: [push, pull_request] jobs: build: diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index eb32330..0000000 --- a/.travis.yml +++ /dev/null @@ -1,13 +0,0 @@ -language: node_js -node_js: - - "10" - - "12" - - "13" -cache: - yarn: true -install: - - yarn global add coveralls - - yarn install -script: - - yarn test - - cat coverage/lcov.info | coveralls