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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
lint:
runs-on: ubuntu-latest
runs-on: &default-runner blacksmith-4vcpu-ubuntu-2404
steps:
- uses: actions/checkout@v4

Expand All @@ -26,7 +26,7 @@ jobs:
run: npm run typecheck

test:
runs-on: ubuntu-latest
runs-on: *default-runner
steps:
- uses: actions/checkout@v4

Expand All @@ -44,7 +44,7 @@ jobs:
run: npm run test:coverage

secret-scan:
runs-on: ubuntu-latest
runs-on: *default-runner
steps:
- uses: actions/checkout@v4

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ concurrency:

jobs:
docs-scope:
runs-on: ubuntu-latest
runs-on: &default-runner blacksmith-4vcpu-ubuntu-2404
outputs:
docs_only: ${{ steps.check.outputs.docs_only }}
steps:
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
integration:
needs: [docs-scope]
if: needs.docs-scope.outputs.docs_only != 'true'
runs-on: ubuntu-latest
runs-on: *default-runner
strategy:
fail-fast: false
matrix:
Expand Down