-
Notifications
You must be signed in to change notification settings - Fork 682
70 lines (63 loc) · 1.97 KB
/
test-server.yml
File metadata and controls
70 lines (63 loc) · 1.97 KB
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
name: Test Server
on:
workflow_call:
inputs:
test-script:
required: true
type: string
node-version:
required: false
type: string
default: 16
is-docker:
required: false
type: boolean
default: false
node-options:
required: false
type: string
default: ''
env:
NO_CACHE: ${{ secrets.NO_CACHE }}
jobs:
test:
runs-on: ubuntu-latest
environment: test-server
steps:
- uses: DevExpress/testcafe-build-system/actions/set-status@main
with:
status: 'pending'
- uses: actions/checkout@v3
with:
ref: ${{github.event.inputs.merged_sha || github.event.inputs.sha}}
- uses: actions/setup-node@v3
with:
node-version: ${{ inputs.node-version }}
- uses: DevExpress/testcafe-build-system/actions/read-artifacts@main
with:
package-name: 'testcafe'
is-docker: ${{ inputs.is-docker }}
- name: Get npm cache directory
id: npm-cache-dir
run: |
echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
if: ${{ !env.NO_CACHE }}
id: npm-cache # use this to check for `cache-hit` ==> if: steps.npm-cache.outputs.cache-hit != 'true'
with:
path: ${{ steps.npm-cache-dir.outputs.dir }}
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm ci
if: ${{ !inputs.is-docker }}
- run: npm install
if: ${{ inputs.is-docker }}
- run: ${{ inputs.test-script }}
timeout-minutes: 60
env:
NODE_OPTIONS: ${{ inputs.node-options }}
- uses: DevExpress/testcafe-build-system/actions/set-status@main
if: always()
with:
status: ${{ fromJSON('["failure", "success"]')[job.status == 'success'] }}