Skip to content

Commit 0ff2650

Browse files
committed
single quotes
1 parent 456af84 commit 0ff2650

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/actions/acceptance-tests/action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,13 @@ runs:
4545
echo "PR_NUMBER=${{ inputs.targetEnvironment }}" >> $GITHUB_ENV
4646
4747
- name: Run component tests
48-
if: inputs.testType == "component"
48+
if: inputs.testType == 'component'
4949
shell: bash
5050
run: |
5151
make test-component
5252
5353
- name: Check if e2e tests should run
54-
if: inputs.testType == "e2e"
54+
if: inputs.testType == 'e2e'
5555
id: check_e2e
5656
shell: bash
5757
env:
@@ -75,14 +75,14 @@ runs:
7575
fi
7676
7777
- name: Install poetry and pytest
78-
if: inputs.testType == "e2e" && steps.check_e2e.outputs.run_e2e == 'true'
78+
if: inputs.testType == 'e2e' && steps.check_e2e.outputs.run_e2e == 'true'
7979
shell: bash
8080
run: |
8181
pipx install poetry
8282
pip install pytest
8383
8484
- name: Run e2e tests
85-
if: inputs.testType == "e2e" && steps.check_e2e.outputs.run_e2e == 'true'
85+
if: inputs.testType == 'e2e' && steps.check_e2e.outputs.run_e2e == 'true'
8686
shell: bash
8787
run: |
8888
make .internal-dev-test

0 commit comments

Comments
 (0)