Skip to content

Commit

Permalink
Try our experimental self-hosted runner
Browse files Browse the repository at this point in the history
  • Loading branch information
justinclift committed Sep 2, 2023
1 parent ab71bde commit 1ec7d5a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ env:
NODE_VERSION: 16.20.1
jobs:
backend-lint:
runs-on: ubuntu-22.04
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
with:
Expand All @@ -22,7 +22,7 @@ jobs:
- run: isort --check-only --diff .

backend-unit-tests:
runs-on: ubuntu-22.04
runs-on: self-hosted
needs: backend-lint
env:
COMPOSE_FILE: .ci/docker-compose.ci.yml
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
path: coverage.xml

frontend-lint:
runs-on: ubuntu-22.04
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
with:
Expand All @@ -86,7 +86,7 @@ jobs:
path: /tmp/test-results

frontend-unit-tests:
runs-on: ubuntu-22.04
runs-on: self-hosted
needs: frontend-lint
steps:
- uses: actions/checkout@v3
Expand All @@ -107,7 +107,7 @@ jobs:
- run: yarn lint

frontend-e2e-tests:
runs-on: ubuntu-22.04
runs-on: self-hosted
needs: frontend-lint
env:
COMPOSE_FILE: .ci/docker-compose.cypress.yml
Expand Down

0 comments on commit 1ec7d5a

Please sign in to comment.