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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
3 changes: 3 additions & 0 deletions .github/workflows/bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ jobs:
bench:
runs-on: ubuntu-latest
permissions: {}
defaults:
run:
working-directory: apps/cli

steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ jobs:
build:
runs-on: ${{ matrix.os }}
permissions: {}
defaults:
run:
working-directory: apps/cli
strategy:
# Run every OS x node combo to completion so a single platform failure
# doesn't mask the others — we want the full cross-platform picture.
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/computer-helper-win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ on:
push:
branches: ['win-computer-use', 'main']
paths:
- 'packages/computer-helper-win/**'
- 'native/computer-win/**'
- '.github/workflows/computer-helper-win.yml'
pull_request:
paths:
- 'packages/computer-helper-win/**'
- 'native/computer-win/**'
- '.github/workflows/computer-helper-win.yml'

jobs:
Expand All @@ -24,7 +24,7 @@ jobs:
permissions: {}
defaults:
run:
working-directory: packages/computer-helper-win
working-directory: native/computer-win

steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
permissions: {}
defaults:
run:
working-directory: packages/computer-helper-win
working-directory: native/computer-win

steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/tests-windows-noop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ on:
pull_request:
branches: ['main', 'release/**']
paths-ignore:
- 'src/lib/hooks.ts'
- 'src/lib/hooks/**'
- 'src/lib/platform/**'
- 'src/lib/shims*.ts'
- 'hooks/**'
- 'apps/cli/src/lib/hooks.ts'
- 'apps/cli/src/lib/hooks/**'
- 'apps/cli/src/lib/platform/**'
- 'apps/cli/src/lib/shims*.ts'
- 'apps/cli/hooks/**'
- '.github/workflows/tests-windows.yml'

concurrency:
Expand Down
13 changes: 8 additions & 5 deletions .github/workflows/tests-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ on:
pull_request:
branches: ['main', 'release/**']
paths:
- 'src/lib/hooks.ts'
- 'src/lib/hooks/**'
- 'src/lib/platform/**'
- 'src/lib/shims*.ts'
- 'hooks/**'
- 'apps/cli/src/lib/hooks.ts'
- 'apps/cli/src/lib/hooks/**'
- 'apps/cli/src/lib/platform/**'
- 'apps/cli/src/lib/shims*.ts'
- 'apps/cli/hooks/**'
- '.github/workflows/tests-windows.yml'

concurrency:
Expand All @@ -36,6 +36,9 @@ jobs:
test-windows:
runs-on: windows-latest
timeout-minutes: 25
defaults:
run:
working-directory: apps/cli

steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 20
defaults:
run:
working-directory: apps/cli

steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
Expand Down
Loading
Loading