-
-
Notifications
You must be signed in to change notification settings - Fork 2
38 lines (36 loc) · 866 Bytes
/
tests.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
name: Tests
on:
pull_request:
branches: [ main ]
jobs:
tests:
runs-on: ubuntu-latest
services:
mongo:
image: mongo:5
env:
MONGO_INITDB_ROOT_USERNAME: chat
MONGO_INITDB_ROOT_PASSWORD: chat
options: >-
--health-cmd mongo
--health-interval 20s
--health-timeout 10s
--health-retries 5
ports:
- 27017:27017
env:
NODE_ENV: 'test'
DATABASE_URL: 'mongodb://chat:chat@localhost:27017/tests?authSource=admin'
steps:
- uses: actions/checkout@v3
- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 20.x
cache: 'npm'
- uses: denoland/setup-deno@v2
with:
deno-version: '2.x'
- run: npm i
- run: deno install --allow-scripts
- run: deno task check