Skip to content

Commit fd6478b

Browse files
committed
chore: revert workflows runners to use github's instead
1 parent 81dff88 commit fd6478b

5 files changed

Lines changed: 13 additions & 10 deletions

File tree

.github/workflows/auto-deploy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
build-and-push:
99
if: github.event.pull_request.merged == true
1010
name: Build and Push Docker Image
11-
runs-on: self-hosted
11+
runs-on: ubuntu-latest
1212
permissions:
1313
contents: write
1414
pull-requests: write

.github/workflows/code-quality-workflow.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@ jobs:
1313
style-quality:
1414
if: github.event.pull_request.draft == false
1515
name: Code Style & Quality
16-
runs-on: self-hosted
16+
runs-on: ubuntu-latest
1717

1818
steps:
1919
- uses: actions/checkout@v4
2020

21+
- name: Set up Corepack
22+
run: corepack enable
23+
2124
- name: Set up pnpm
2225
run: corepack prepare pnpm@latest --activate
2326

24-
- name: Add pnpm to PATH
25-
run: echo "/home/btngana/.local/share/pnpm" >> $GITHUB_PATH
26-
2727
- uses: actions/setup-node@v4
2828
with:
2929
node-version: 22

.github/workflows/e2e-workflow.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
e2e-tests:
10-
runs-on: self-hosted
10+
runs-on: ubuntu-latest
1111
environment: e2e
1212
env:
1313
APP_POSTGRES_USER: ${{ secrets.POSTGRES_USER }}
@@ -62,6 +62,9 @@ jobs:
6262
run: |
6363
printenv | grep '^APP_' | sed 's/^APP_//' > .env
6464
65+
- name: Set up Corepack
66+
run: corepack enable
67+
6568
- name: Set up pnpm
6669
run: corepack prepare pnpm@latest --activate
6770

.github/workflows/pr-validation-workflow.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions:
1212
jobs:
1313
validate-merge-permissions:
1414
if: github.event.pull_request.base.ref == 'main'
15-
runs-on: self-hosted
15+
runs-on: ubuntu-latest
1616
name: Validate Merge Permissions
1717
steps:
1818
- name: Verify Authorized User
@@ -31,7 +31,7 @@ jobs:
3131
branch-name-validation:
3232
if: github.event.pull_request.base.ref == 'dev'
3333
name: Validate branch naming convention
34-
runs-on: self-hosted
34+
runs-on: ubuntu-latest
3535

3636
steps:
3737
- name: Enforce kebab-case branch name
@@ -49,7 +49,7 @@ jobs:
4949
5050
validate-pr-title:
5151
name: Validate PR title format
52-
runs-on: self-hosted
52+
runs-on: ubuntu-latest
5353

5454
steps:
5555
- name: Check PR title format

.github/workflows/testers-checklist.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
checklist:
99
if: github.event.pull_request.draft == false
10-
runs-on: self-hosted
10+
runs-on: ubuntu-latest
1111

1212
permissions:
1313
pull-requests: write

0 commit comments

Comments
 (0)