Skip to content

Commit

Permalink
chore(ci): remove JS handling from workflow conditionals
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekRoberts committed Jan 29, 2025
1 parent 1767a6a commit 0dcbe3d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/.tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
# npx playwright test --project="${{ matrix.project }}" --reporter=html

# - uses: actions/upload-artifact@v4
# if: ${{ !cancelled() }}
# if: (! cancelled())
# name: upload results
# with:
# name: playwright-report-${{ matrix.project }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ concurrency:
jobs:
# tests:
# name: Tests
# if: ${{ ! github.event.pull_request.draft }}
# if: (! github.event.pull_request.draft)
# runs-on: ubuntu-24.04
# timeout-minutes: 5
# services:
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
# https://github.com/marketplace/actions/aqua-security-trivy
trivy:
name: Trivy Security Scan
if: ${{ ! github.event.pull_request.draft }}
if: (! github.event.pull_request.draft)
runs-on: ubuntu-24.04
timeout-minutes: 5
steps:
Expand Down

0 comments on commit 0dcbe3d

Please sign in to comment.