From fe123129d227ee7fca14fb2f3f427dc411dd4e5f Mon Sep 17 00:00:00 2001 From: Kush Trivedi <44091822+kushthedude@users.noreply.github.com> Date: Mon, 4 Jan 2021 16:58:48 +0530 Subject: [PATCH] chore: align test-suite name with npm standards (#3439) * chore: align test-suite name with npm standards Signed-off-by: Kush Trivedi * chore: rename ci to openrefine Signed-off-by: Kush Trivedi * chore: make requested changes Signed-off-by: Kush Trivedi --- .github/workflows/pull_request.yml | 8 ++++---- main/tests/cypress/package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 2465e386e..9b7958361 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -1,9 +1,9 @@ -name: Java CI +name: Continuous Integration on: [pull_request_target] jobs: - build: + server_tests: strategy: matrix: java: [ 8, 14 ] @@ -72,11 +72,11 @@ jobs: run: | mvn prepare-package -DskipTests=true mvn jacoco:report coveralls:report -DrepoToken=${{ secrets.COVERALLS_TOKEN }} -DpullRequest=${{ github.event.number }} - cypress_tests: + + ui_tests: strategy: matrix: browser: ['chrome'] - runs-on: ubuntu-latest steps: diff --git a/main/tests/cypress/package.json b/main/tests/cypress/package.json index 2b4d41702..c5e8dc6d9 100644 --- a/main/tests/cypress/package.json +++ b/main/tests/cypress/package.json @@ -1,5 +1,5 @@ { - "name": "OpenRefine-Cypress-Test-Suite", + "name": "openrefine-cypress-test-suite", "version": "1.0.0", "description": "Cypress tests for OpenRefine", "license": "BSD-3-Clause",