Skip to content
Open
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
18 changes: 9 additions & 9 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ concurrency:
jobs:
lint:
name: lint
runs-on: ubuntu-latest
runs-on: blacksmith-2vcpu-ubuntu-2404
steps:
- name: 🏗 Setup repo
uses: actions/checkout@v4
Expand All @@ -38,7 +38,7 @@ jobs:
build:
name: build
environment: Preview
runs-on: ubuntu-latest
runs-on: blacksmith-2vcpu-ubuntu-2404
steps:
- name: 🏗 Setup repo
uses: actions/checkout@v4
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:

prettier:
name: prettier
runs-on: ubuntu-latest
runs-on: blacksmith-2vcpu-ubuntu-2404
steps:
- name: 🏗 Setup repo
uses: actions/checkout@v4
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:

test:
name: test
runs-on: ubuntu-latest
runs-on: blacksmith-2vcpu-ubuntu-2404
steps:
- name: 🏗 Setup repo
uses: actions/checkout@v4
Expand All @@ -135,7 +135,7 @@ jobs:

drift:
name: drift
runs-on: ubuntu-latest
runs-on: blacksmith-2vcpu-ubuntu-2404
steps:
- name: 🏗 Setup repo
uses: actions/checkout@v4
Expand All @@ -158,7 +158,7 @@ jobs:

fallow:
name: fallow
runs-on: ubuntu-latest
runs-on: blacksmith-2vcpu-ubuntu-2404
steps:
- name: 🏗 Setup repo
uses: actions/checkout@v4
Expand All @@ -183,7 +183,7 @@ jobs:
name: e2e
if: github.event_name == 'merge_group'
environment: Preview
runs-on: ubuntu-latest
runs-on: blacksmith-2vcpu-ubuntu-2404
timeout-minutes: 20
container: mcr.microsoft.com/playwright:v1.58.0-noble
env:
Expand Down Expand Up @@ -231,7 +231,7 @@ jobs:

migrations-check:
name: migrations-check
runs-on: ubuntu-latest
runs-on: blacksmith-2vcpu-ubuntu-2404
steps:
- name: 🏗 Setup repo
uses: actions/checkout@v4
Expand Down Expand Up @@ -266,7 +266,7 @@ jobs:

migration-safety:
name: migration-safety
runs-on: ubuntu-latest
runs-on: blacksmith-2vcpu-ubuntu-2404
permissions:
pull-requests: write
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/claude.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
if: |
(github.event_name == 'issue_comment' && contains(github.event.comment.body, '@claude')) ||
(github.event_name == 'issues' && (contains(github.event.issue.body, '@claude') || contains(github.event.issue.title, '@claude')))
runs-on: ubuntu-latest
runs-on: blacksmith-2vcpu-ubuntu-2404
permissions:
contents: write
pull-requests: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cleanup.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
jobs:
cleanup:
if: ${{ github.event_name == 'workflow_dispatch' || (!contains(fromJson('["main", "release"]'), github.event.ref) && !startsWith(github.event.ref, 'gh-readonly-queue/') && !startsWith(github.event.ref, 'dependabot/')) }}
runs-on: ubuntu-latest
runs-on: blacksmith-2vcpu-ubuntu-2404
steps:
- name: Install Turso CLI
run: curl -sSfL https://get.tur.so/install.sh | bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-auto-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ concurrency:
jobs:
prettify:
if: github.actor == 'dependabot[bot]'
runs-on: ubuntu-latest
runs-on: blacksmith-2vcpu-ubuntu-2404
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/development.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
- 'main'
jobs:
deploy:
runs-on: ubuntu-latest
runs-on: blacksmith-2vcpu-ubuntu-2404
environment: Dev
env:
NODE_ENV: production
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/post-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
permissions:
issues: write
pull-requests: write
runs-on: ubuntu-latest
runs-on: blacksmith-2vcpu-ubuntu-2404
steps:
- uses: apexskier/github-release-commenter@v1
with:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/preview.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ concurrency:
jobs:
deploy:
if: ${{ github.event_name != 'merge_group' }}
# Kept on GitHub-hosted runners: the seed step writes thousands of rows to a
# remote Turso DB, and that long, latency-bound stream of round-trips
# reproducibly kills Blacksmith runners mid-seed. Revisit once seeding no
# longer does per-row remote writes — see NWACus/web#1143.
runs-on: ubuntu-latest
environment: Preview
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/production.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
required: true
jobs:
deploy:
runs-on: ubuntu-latest
runs-on: blacksmith-2vcpu-ubuntu-2404
environment: Production
env:
NODE_ENV: production
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sync-prod-to-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
workflow_dispatch:
jobs:
sync:
runs-on: ubuntu-latest
runs-on: blacksmith-2vcpu-ubuntu-2404
environment: Dev
env:
NODE_ENV: production
Expand Down
Loading