-
Notifications
You must be signed in to change notification settings - Fork 1.4k
46 lines (42 loc) · 1.05 KB
/
test-mongodb.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
name: test-mongodb
on:
push:
paths:
- databases/mongodb/**
branches:
- latest
- dev
- patch-dev
pull_request:
paths:
- databases/mongodb/**
env:
CI: 1
PRISMA_TELEMETRY_INFORMATION: 'prisma-examples test-mongodb.yaml'
jobs:
test:
defaults:
run:
working-directory: databases/mongodb
runs-on: ubuntu-latest
# Service containers to run with `container-job`
services:
# Label used to access the service container
mongodb:
# Docker Hub image
image: prismagraphql/mongo-single-replica:4.4.3-bionic
env:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: prisma
ports:
- 27017:27017
env:
DATABASE_URL: mongodb://root:prisma@localhost:27017/prisma-mongo?authSource=admin&retryWrites=true&w=majority
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18'
- run: npm install
- run: npx prisma generate
- run: npm run test