-
Notifications
You must be signed in to change notification settings - Fork 19
67 lines (56 loc) · 1.4 KB
/
ci.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
name: CI
on:
# workflow_dispatch:
pull_request:
push:
# branches:
# - master
paths:
- ".github/**"
- ".npmignore"
- "src/**"
- "test/**"
- "package*.json"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 18]
services:
mssql:
image: mcr.microsoft.com/mssql/server:2019-latest
ports:
- 1433:1433
options: >-
--health-cmd "exit 0"
--health-interval 10s
--health-timeout 10s
--health-retries 5
env:
SA_PASSWORD: "P@ssw0rdP@ssw0rd"
ACCEPT_EULA: "Y"
steps:
- uses: actions/checkout@v4
- name: config
run: cp .env.dev .env
- name: Wait for SQL Server to be ready
run: |
for i in {1..30}; do
/opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P P@ssw0rdP@ssw0rd -Q "SELECT 1" && break
sleep 1
done
- name: Create database
run: |
/opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P P@ssw0rdP@ssw0rd -Q "CREATE DATABASE testdb"
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
# cache: npm
- name: npm install
run: |
cp ./test/_config.github.json ./test/config.json
npm install
- name: npm test
run: npm test