Skip to content
Closed
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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ concurrency:
jobs:
typescript:
name: TypeScript
runs-on: ${{ github.event.pull_request.head.repo.fork && 'ubuntu-latest' || 'arc-runner-altimate-code' }}
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:

lint:
name: Lint
runs-on: ${{ github.event.pull_request.head.repo.fork && 'ubuntu-latest' || 'arc-runner-altimate-code' }}
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
Expand All @@ -62,7 +62,7 @@ jobs:

python:
name: Python ${{ matrix.python-version }}
runs-on: ${{ github.event.pull_request.head.repo.fork && 'ubuntu-latest' || 'arc-runner-altimate-code' }}
runs-on: ubuntu-latest
timeout-minutes: 60
strategy:
matrix:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ env:
jobs:
build:
name: Build (${{ matrix.os }})
runs-on: arc-runner-altimate-code
runs-on: ubuntu-latest
timeout-minutes: 60
permissions:
contents: read
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
publish-npm:
name: Publish to npm
needs: build
runs-on: arc-runner-altimate-code
runs-on: ubuntu-latest
timeout-minutes: 60
permissions:
contents: read
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
# doesn't need CLI binary artifacts. This allows it to run in parallel.
publish-engine:
name: Publish engine to PyPI
runs-on: arc-runner-altimate-code
runs-on: ubuntu-latest
timeout-minutes: 60
environment: pypi
permissions:
Expand Down Expand Up @@ -156,7 +156,7 @@ jobs:
github-release:
name: Create GitHub Release
needs: [build, publish-npm]
runs-on: arc-runner-altimate-code
runs-on: ubuntu-latest
timeout-minutes: 60
permissions:
contents: write
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
matrix:
settings:
- name: linux
host: arc-runner-altimate-code
host: ubuntu-latest
- name: windows
host: windows-latest
runs-on: ${{ matrix.settings.host }}
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
matrix:
settings:
- name: linux
host: arc-runner-altimate-code
host: ubuntu-latest
playwright: bunx playwright install --with-deps
- name: windows
host: windows-latest
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:

required:
name: test (linux)
runs-on: arc-runner-altimate-code
runs-on: ubuntu-latest
needs:
- unit
- e2e
Expand Down
Loading