Skip to content

Commit 4f2c667

Browse files
authored
ci: cancelled syntax (#4)
* ci: add release-please manifest * ci: fix workflow syntax for ``cancelled()`
1 parent d9e748d commit 4f2c667

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/reusable-e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656

5757
- name: Upload E2E test results as artifact
5858
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
59-
if: !cancelled()
59+
if: ${{ !cancelled() }}
6060
with:
6161
name: playwright-report
6262
path: tests/_output

.github/workflows/reusable-lint-js.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ jobs:
3333

3434
- name: Run TypeScript check
3535
id: typescript
36-
if: !cancelled()
36+
if: ${{ !cancelled() }}
3737
run: npm run lint:js:types
3838

3939
- name: Run Stylelint
4040
id: stylelint
41-
if: !cancelled()
41+
if: ${{ !cancelled() }}
4242
run: npm run lint:css
4343

4444
- name: Run Prettier check
4545
id: prettier
46-
if: !cancelled()
46+
if: ${{ !cancelled() }}
4747
run: npm run format -- --check

0 commit comments

Comments
 (0)