diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b4f2882d..d4173e02 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ permissions: jobs: lint: - runs-on: [self-hosted, node-b, linux, x64] + runs-on: [self-hosted] steps: - uses: actions/checkout@v7 # The self-hosted runner image has no Rust toolchain preinstalled, @@ -42,7 +42,7 @@ jobs: - run: cargo clippy --workspace --all-features --locked -- -D warnings test: - runs-on: [self-hosted, node-b, linux, x64] + runs-on: [self-hosted] steps: - uses: actions/checkout@v7 # The self-hosted runner image has no Rust toolchain preinstalled, @@ -64,7 +64,7 @@ jobs: - run: cargo test --workspace --all-features --locked build: - runs-on: [self-hosted, node-b, linux, x64] + runs-on: [self-hosted] steps: - uses: actions/checkout@v7 # The self-hosted runner image has no Rust toolchain preinstalled, @@ -86,7 +86,7 @@ jobs: - run: cargo build --workspace --all-features --locked ui: - runs-on: [self-hosted, node-b, linux, x64] + runs-on: [self-hosted] strategy: matrix: project: [ui, client] @@ -103,7 +103,7 @@ jobs: run: npm run build ui-e2e: - runs-on: [self-hosted, node-b, linux, x64] + runs-on: [self-hosted] steps: - uses: actions/checkout@v7 - uses: actions/setup-node@v7 @@ -121,7 +121,7 @@ jobs: container: if: github.event_name == 'push' needs: [lint, test, build, ui, ui-e2e] - runs-on: [self-hosted, node-b, linux, x64, publish, docker] + runs-on: [self-hosted, docker, publish] permissions: contents: read packages: write