From 1603e5bebaaac3f03ceb93b0311714ee8e0097b6 Mon Sep 17 00:00:00 2001 From: Mrugesh Mohapatra <1884376+raisedadead@users.noreply.github.com> Date: Tue, 11 Aug 2020 02:07:19 +0530 Subject: [PATCH] chore: remove travis integration (#39390) --- .github/workflows/codeql-analysis.yml | 4 ++-- .github/workflows/cypress.yml | 4 ++-- .travis.yml | 31 --------------------------- 3 files changed, 4 insertions(+), 35 deletions(-) delete mode 100644 .travis.yml diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 9e4800494d..a374fa8136 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -1,4 +1,4 @@ -name: CodeQL Scanning +name: CodeQL on: push: @@ -8,7 +8,7 @@ on: jobs: CodeQL-Build: - name: CodeQL Build + name: Scan runs-on: ubuntu-18.04 steps: diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index 63eacbd013..942fd4f299 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress.yml @@ -1,4 +1,4 @@ -name: Cypress Tests +name: Cypress on: push: pull_request: @@ -7,7 +7,7 @@ on: jobs: cypress-run: - name: Cypress Tests + name: Test env: CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 5eccda7310..0000000000 --- a/.travis.yml +++ /dev/null @@ -1,31 +0,0 @@ -language: node_js - -node_js: - - 'lts/*' - -cache: - directories: - - '$HOME/.npm' - -env: - global: - - NO_UPDATE_NOTIFIER=1 - - NODE_NO_WARNINGS=1 - -before_install: - - npm config set loglevel warn - - cp sample.env .env - -install: npm ci - -before_script: - - npm run ensure-env - -jobs: - include: - - stage: Lint javaScript - script: - - npm run lint - - - stage: Unit and Integration tests - script: npm test