generated from hyper63/adapter-template
-
Notifications
You must be signed in to change notification settings - Fork 0
104 lines (91 loc) · 2.61 KB
/
test-and-publish.yml
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
name: 💾 Test & Publish Adapter
on:
pull_request:
branches:
- main
push:
branches:
- main
tags:
- '*'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
deno-version: [1.x]
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v3
- name: 🦕 Setup Deno
uses: denoland/setup-deno@v1
with:
deno-version: ${{ matrix.deno-version }}
- name: ⚡ Run Tests
run: |
deno task test
env:
CI: true
# Run the test suite against a Mongo Instance Self Hosted
# using the mongodb: protocol
#
# This is meant to represent a self-hosted instance of MongoDB
test-native-integration-self-hosted:
runs-on: ubuntu-latest
strategy:
matrix:
deno-version: [1.x]
mongodb-version: [6]
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v3
- name: 🦕 Setup Deno
uses: denoland/setup-deno@v1
with:
deno-version: ${{ matrix.deno-version }}
# Start a Mongo Instance in the local CI runner environment
- name: Start MongoDB
uses: supercharge/[email protected]
with:
mongodb-version: ${{ matrix.mongodb-version }}
- name: ⚡ Run Native Integration Tests
run: |
deno task test:integration-native
env:
CI: true
MONGO_URL: mongodb://127.0.0.1:27017
# Run the test suite against a Mongo Instance Deployed on MongoDB Atlas
# a common hosting platform for MongoDB.
#
# The main distinction is that MongoDB Atlas uses the mongodb+srv: protocol
test-native-integration-atlas:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-test-native-integration-atlas
strategy:
matrix:
deno-version: [1.x]
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v3
- name: 🦕 Setup Deno
uses: denoland/setup-deno@v1
with:
deno-version: ${{ matrix.deno-version }}
- name: ⚡ Run Native Integration Tests (Atlas 🧭)
run: |
deno task test:integration-native
env:
CI: true
MONGO_URL: ${{ secrets.INTEGRATION_ATLAS_MONGO_URL }}
publish:
if: startsWith(github.ref, 'refs/tags/v')
needs: [test, test-native-integration-self-hosted, test-native-integration-atlas]
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v3
- name: 🦕 Setup Deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.x