Skip to content

Commit 4c91b3e

Browse files
committed
vercel deployment check
1 parent 474a43d commit 4c91b3e

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/ci.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,13 @@ jobs:
4444
run: dotnet test server/Tests/server.Tests.csproj --no-restore --configuration Release --verbosity normal --logger "trx;LogFileName=test-results.trx"
4545
working-directory: .
4646

47+
- name: Notify Vercel - Backend Tests
48+
uses: vercel/repository-dispatch/actions/status@v1
49+
if: always()
50+
with:
51+
name: "Vercel - eloomen-prod: backend-tests"
52+
state: ${{ job.status }}
53+
4754
- name: Upload test results
4855
uses: actions/upload-artifact@v4
4956
if: always()
@@ -76,8 +83,22 @@ jobs:
7683
run: npm run lint
7784
working-directory: client
7885

86+
- name: Notify Vercel - Lint
87+
uses: vercel/repository-dispatch/actions/status@v1
88+
if: always()
89+
with:
90+
name: "Vercel - eloomen-prod: lint"
91+
state: ${{ job.status }}
92+
7993
- name: Build Next.js app
8094
run: npm run build
8195
working-directory: client
8296
env:
8397
NEXT_PUBLIC_API_URL: ${{ secrets.NEXT_PUBLIC_API_URL || 'http://localhost:5000/api' }}
98+
99+
- name: Notify Vercel - Build
100+
uses: vercel/repository-dispatch/actions/status@v1
101+
if: always()
102+
with:
103+
name: "Vercel - eloomen-prod: build"
104+
state: ${{ job.status }}

0 commit comments

Comments
 (0)