Skip to content

Commit df3c175

Browse files
committed
Test on lightweight runners
1 parent dd483fd commit df3c175

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/pre-release.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ on:
2424
jobs:
2525
# Linters
2626
lint-frontend:
27-
runs-on: thevickypedia-default
27+
runs-on: thevickypedia-lite
2828
steps:
2929
- uses: actions/checkout@v4
3030
- uses: actions/setup-node@v4
@@ -45,14 +45,14 @@ jobs:
4545
- run: make lint-backend
4646
shell: bash
4747
lint:
48-
runs-on: thevickypedia-default
48+
runs-on: thevickypedia-lite
4949
needs: [lint-frontend, lint-backend]
5050
steps:
5151
- run: echo "Finished Linting"
5252

5353
# Tests
5454
test-frontend:
55-
runs-on: thevickypedia-default
55+
runs-on: thevickypedia-lite
5656
steps:
5757
- uses: actions/checkout@v4
5858
- uses: actions/setup-node@v4
@@ -61,7 +61,7 @@ jobs:
6161
- run: make test-frontend
6262
shell: bash
6363
test-backend:
64-
runs-on: thevickypedia-default
64+
runs-on: thevickypedia-lite
6565
steps:
6666
- uses: actions/checkout@v4
6767
- uses: actions/setup-go@v5
@@ -70,7 +70,7 @@ jobs:
7070
- run: make test-backend
7171
shell: bash
7272
test:
73-
runs-on: thevickypedia-default
73+
runs-on: thevickypedia-lite
7474
needs: [test-frontend, test-backend]
7575
steps:
7676
- run: echo "Finished Testing"
@@ -79,7 +79,7 @@ jobs:
7979
# IMPORTANT: frontend can be built in parallel, since the build output doesn't matter
8080
build-frontend:
8181
if: github.event_name == 'push' || inputs.build == 'true'
82-
runs-on: thevickypedia-default
82+
runs-on: thevickypedia-lite
8383
needs: [lint, test]
8484
steps:
8585
- uses: actions/checkout@v4
@@ -91,7 +91,7 @@ jobs:
9191

9292
build-backend:
9393
if: github.event_name == 'push' || inputs.build == 'true'
94-
runs-on: thevickypedia-default
94+
runs-on: thevickypedia-lite
9595
needs: [lint, test]
9696
steps:
9797
- uses: actions/checkout@v4
@@ -103,7 +103,7 @@ jobs:
103103

104104
build:
105105
if: github.event_name == 'push' || inputs.build == 'true'
106-
runs-on: thevickypedia-default
106+
runs-on: thevickypedia-lite
107107
needs: [build-frontend, build-backend]
108108
steps:
109109
- run: echo "Finished Building"

0 commit comments

Comments
 (0)