ci: use go-react label to avoid Docker caching
CI/CD / lint-and-typecheck (push) Successful in 7s
CI/CD / test (push) Successful in 6s
CI/CD / build (push) Successful in 8s
CI/CD / deploy (push) Has been skipped

This commit is contained in:
2026-05-21 15:28:36 +00:00
parent ac902b48c9
commit be9e170484
+4 -4
View File
@@ -8,7 +8,7 @@ on:
jobs:
lint-and-typecheck:
runs-on: ubuntu-latest
runs-on: go-react
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
@@ -21,7 +21,7 @@ jobs:
test:
needs: lint-and-typecheck
runs-on: ubuntu-latest
runs-on: go-react
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
@@ -33,7 +33,7 @@ jobs:
build:
needs: test
runs-on: ubuntu-latest
runs-on: go-react
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
@@ -49,7 +49,7 @@ jobs:
deploy:
needs: build
runs-on: ubuntu-latest
runs-on: go-react
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
environment: production
steps: