-
Notifications
You must be signed in to change notification settings - Fork 208
56 lines (44 loc) · 1.01 KB
/
integration-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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
---
name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch: { }
jobs:
build:
runs-on: ubuntu-latest
name: CI
strategy:
fail-fast: false
matrix:
node-version: [16.x, 14.x, 12.x]
steps:
- name: Checkout Repository
uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Setup Node ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
always-auth: false
node-version: ${{ matrix.node-version }}
- name: Start Solr
run: npm run solr:current:start
- name: Run npm install
run: npm install
- name: Print Solr logs
run: npm run solr:current:logs
- name: Sleep for 3 seconds
uses: kibertoad/[email protected]
with:
time: '3s'
- name: Run Tests
run: npm run test:current
env:
CI: true
- name: Stop Solr
run: npm run solr:current:stop