We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d592b98 commit bccf7caCopy full SHA for bccf7ca
.github/workflows/pr-ci.yml
@@ -63,7 +63,7 @@ jobs:
63
run: echo 'No lint config yet';
64
- name: Smoke run
65
working-directory: templates/node
66
- run: node src/index.js & sleep 2 && curl -f http://localhost:3001/ || echo 'Sample run complete'
+ run: node src/index.js & PID=$!; sleep 2; curl -f http://localhost:3001/health; kill $PID || true
67
68
frontend:
69
name: Next.js Template
@@ -120,7 +120,7 @@ jobs:
120
- uses: actions/checkout@v4
121
- name: Build
122
working-directory: templates/go
123
- run: go build -v ./...
+ run: go build -v -o service main.go
124
- name: Vet
125
126
run: go vet ./...
0 commit comments