Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,18 @@ on:
branches: [main]
pull_request:

# Keep apt-get / playwright --with-deps from stalling on an interactive
# prompt (the root cause of past 6h CI hangs on the browser-install step).
env:
DEBIAN_FRONTEND: noninteractive

jobs:
unit:
name: Unit tests
runs-on: ubuntu-latest
# A stalled apt/playwright install should fail fast, not burn the full
# 6h default job budget. The unit suite itself runs in seconds.
timeout-minutes: 20
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
Expand All @@ -25,6 +33,7 @@ jobs:
name: ci-smoke (${{ matrix.browser }})
needs: unit
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,14 @@ on:
jobs:
publish:
runs-on: ubuntu-latest
timeout-minutes: 30
permissions:
contents: read
id-token: write
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
# Prevent apt-get / playwright --with-deps stalling on a prompt.
DEBIAN_FRONTEND: noninteractive
steps:
- uses: actions/checkout@v6

Expand Down
8 changes: 4 additions & 4 deletions example/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,8 @@
"@argo-video/cli": "latest",
"@playwright/test": "^1.50.0",
"playwright": "^1.50.0"
},
"overrides": {
"tar": "^7.5.16"
}
}
Loading
Loading