-
Notifications
You must be signed in to change notification settings - Fork 4
55 lines (50 loc) · 1.3 KB
/
test.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
name: Test
on:
pull_request:
workflow_call:
jobs:
test:
runs-on: [ubuntu-latest]
services:
postgres:
image: postgres
env:
POSTGRES_PASSWORD: admin@123
POSTGRES_DB: test_salary_hero
ports:
- 5432:5432
redis:
image: redis:6-alpine
ports:
- 6379:6379
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16.20.1'
- name: Cache node modules
id: cache-npm
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
path: ./node_modules
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install yarn && Install dependencies
run: npm install yarn -g && yarn && yarn list
- name: Build APP
run: yarn build
- name: Setup env
run: cp .env.test .env
- name: Migration
run: npm run typeorm:test
- name: Echo env test
run: cat .env.test
- name: Echo env
run: cat .env
- name: Test
run: yarn test