2424jobs :
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
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
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"
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
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