Skip to content

Commit

Permalink
fixed syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
NBS-LLC committed Dec 15, 2024
1 parent 08942ed commit 5e992a1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
run: npm run deploy:test

- name: Save Test Results
if: !cancelled()
if: ${{ !cancelled() }}
uses: actions/upload-artifact@v4
with:
name: deploy-test-results
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ jobs:
run: npm stop

- name: Generate Test Report
if: !cancelled()
if: ${{ !cancelled() }}
run: npm run e2e:report

- name: Store Test Results
if: !cancelled()
if: ${{ !cancelled() }}
uses: actions/upload-artifact@v4
with:
name: e2e-test-results
Expand Down

0 comments on commit 5e992a1

Please sign in to comment.