-
Notifications
You must be signed in to change notification settings - Fork 0
83 lines (69 loc) · 2 KB
/
ci.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
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
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
NODE_VERSION: '20.16.0'
jobs:
format:
runs-on: ubuntu-latest
if: ${{ !startsWith(github.event.head_commit.message, 'docs') }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- name: Cache Node modules
uses: actions/cache@v4
id: cache-node-modules
with:
path: |
node_modules
~/.npm
key: ${{ runner.os }}-node-modules-${{ env.NODE_VERSION }}-${{ hashFiles('package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-modules-${{ env.NODE_VERSION }}-
- name: Install dependencies
run: npm ci
- name: Run formatting tests
run: npm run lint
e2e:
runs-on: ubuntu-latest
services:
mongo:
image: mongo:6.0
env:
MONGO_INITDB_ROOT_USERNAME: docker
MONGO_INITDB_ROOT_PASSWORD: mongopw
MONGO_INITDB_DATABASE: nest-api-starter
ports:
- '27017:27017'
if: ${{ !startsWith(github.event.head_commit.message, 'docs') }}
needs: format # Ensures the format job completes before e2e job starts
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- name: Cache Node modules
uses: actions/cache@v4
id: cache-node-modules
with:
path: |
node_modules
~/.npm
key: ${{ runner.os }}-node-modules-${{ env.NODE_VERSION }}-${{ hashFiles('package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-modules-${{ env.NODE_VERSION }}-
- name: Install dependencies
run: npm ci
- name: Run e2e tests
run: npm run test:e2e