From 8c70e90675f7d4d9c6e9df604de9f23b2e1801df Mon Sep 17 00:00:00 2001 From: Yotam Mann Date: Thu, 25 Apr 2024 14:07:35 -0400 Subject: [PATCH] Delete .travis.yml --- .travis.yml | 77 ----------------------------------------------------- 1 file changed, 77 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index a5db3b20..00000000 --- a/.travis.yml +++ /dev/null @@ -1,77 +0,0 @@ -sudo: false -dist: bionic -language: node_js -node_js: - - "14" -install: - - npm install - - git config --global user.email "travis@travis-ci.com" - - git config --global user.name "Travis CI" -script: - - npm run test - - npm run codecov -before_deploy: - # - npm run test:node - - npm run increment - - npm run docs -jobs: - include: - - stage: test - env: BROWSER=chrome - os: linux - addons: - chrome: stable - - stage: test - script: - - npm run build - - npm run docs - - npm run test:examples - env: TEST_EXAMPLES=1 - - stage: test - script: - - npm run build - - npm run docs - - npm run test:examples - env: TEST_EXAMPLES=2 - - stage: test - script: - - npm run build - - npm run test:html - - npm run test:readme - env: TEST_HTML=1 - - stage: deploy - os: linux - script: npm run build - deploy: - - provider: npm - skip_cleanup: true - email: yotammann@gmail.com - api_key: $NPM_TOKEN - tag: next - on: - repo: Tonejs/Tone.js - branch: dev - # don't publish on cron or PRs - condition: $TRAVIS_EVENT_TYPE != cron && $TRAVIS_EVENT_TYPE != pull_request - # publish without @next when pushing on master - - provider: npm - skip_cleanup: true - email: yotammann@gmail.com - api_key: $NPM_TOKEN - on: - repo: Tonejs/Tone.js - branch: master - # don't publish on cron or PRs - condition: $TRAVIS_EVENT_TYPE != cron && $TRAVIS_EVENT_TYPE != pull_request - # publish build files for releases - - provider: releases - api-key: $GH_TOKEN - file_glob: true - file: build/* - skip_cleanup: true - on: - tags: true -# cache node_modules to speed up build -cache: - directories: - - node_modules