Skip to content

Commit

Permalink
ci: do not remove empty spaces (breaks TS code) [no ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
adrians5j committed Oct 9, 2023
1 parent e5e212b commit abc1fa0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pullRequestsCommandCypress2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ jobs:
- name: Save Cypress config
id: save-cypress-config
working-directory: dev
run: echo "cypress-config=$(cat cypress-tests/cypress.config.ts | tr -d ' \t\n\r')" >> $GITHUB_OUTPUT
run: echo "cypress-config=$(cat cypress-tests/cypress.config.ts | tr -d '\t\n\r')" >> $GITHUB_OUTPUT

- name: Cypress - run installation wizard test
working-directory: dev/cypress-tests
Expand Down Expand Up @@ -468,7 +468,7 @@ jobs:
- name: Save Cypress config
id: save-cypress-config
working-directory: dev
run: echo "cypress-config=$(cat cypress-tests/cypress.config.ts | tr -d ' \t\n\r')" >> $GITHUB_OUTPUT
run: echo "cypress-config=$(cat cypress-tests/cypress.config.ts | tr -d '\t\n\r')" >> $GITHUB_OUTPUT

- name: Cypress - run installation wizard test
working-directory: dev/cypress-tests
Expand Down

0 comments on commit abc1fa0

Please sign in to comment.