Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/ci-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,11 @@ jobs:
# tag will be either "push" or "pull_request"
tag: ${{ github.event_name }}
env: "NODE_ENV=development"

- name: Delete the old screenshots
if: always()
run: |
rm -rf cypress/screenshots

# In case of second attempt only run failed specs
- name: Run the cypress test with failed tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/client-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ defaults:

jobs:
build:
runs-on: ubuntu-latest-4-cores
runs-on: ubuntu-latest
# Only run this workflow for internally triggered events
if: |
github.event.pull_request.head.repo.full_name == github.repository ||
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/server-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ defaults:

jobs:
build:
runs-on: ubuntu-latest-8-cores
runs-on: ubuntu-latest
# Only run this workflow for internally triggered events
if: |
github.event.pull_request.head.repo.full_name == github.repository ||
Expand Down Expand Up @@ -148,7 +148,7 @@ jobs:
-DnewVersion=${{ steps.vars.outputs.version }} \
-DgenerateBackupPoms=false \
-DprocessAllModules=true
./build.sh $args
./build.sh -DskipTests

# Restore the previous built bundle if present. If not push the newly built into the cache
- name: Restore the previous bundle
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ describe("Admin settings page", function() {
body: { responseMeta: { status: 200, success: true }, data: {} },
}).as("postEnvVariables");
});


it("1. Should test that settings page is accessible to super user", () => {
cy.LogOut();
Expand Down