-
Notifications
You must be signed in to change notification settings - Fork 1.4k
48 lines (44 loc) · 1.32 KB
/
test-sql-server.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: test-sql-server
on:
push:
paths:
- databases/sql-server/**
branches:
- latest
- dev
- patch-dev
pull_request:
paths:
- databases/sql-server/**
env:
CI: 1
PRISMA_TELEMETRY_INFORMATION: 'prisma-examples test-sql-server.yaml'
jobs:
test:
defaults:
run:
working-directory: databases/sql-server
runs-on: ubuntu-latest
# Service containers to run with `container-job`
services:
# Label used to access the service container
sql-server:
# Docker Hub image
image: mcr.microsoft.com/mssql/server:2022-latest
env:
ACCEPT_EULA: Y
SA_PASSWORD: 'Pr1sm4_Pr1sm4'
# Maps tcp port 1433 on service container to the host
ports:
- '1433:1433'
options: --health-cmd="/opt/mssql-tools/bin/sqlcmd -S localhost -U SA -P ${SA_PASSWORD} -Q 'SELECT 1' || exit 1" --health-interval 10s --health-timeout 5s --health-retries 5
env:
DATABASE_URL: sqlserver://localhost:1433;database=prisma-demo;user=SA;password=Pr1sm4_Pr1sm4;trustServerCertificate=true;encrypt=true
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18'
- run: npm install
- run: npx prisma migrate dev --name "init"
- run: npm run test