-
Notifications
You must be signed in to change notification settings - Fork 5
84 lines (67 loc) · 2.1 KB
/
craftgate-build.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
name: Craftgate Node.js CI
on: [ push, pull_request ]
jobs:
build:
name: Build the Library
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js version 12.x
uses: actions/setup-node@v4
with:
node-version: "12.x"
- name: Install Dependencies
run: npm i
- name: Build the Library
run: npm run build
- name: Run Tests
run: npm run test
- name: Package Artifacts
run: |
.github/scripts/pack-artifacts.sh
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: packed-library
path: ${{ env.ARTIFACT_FILENAME }}
if-no-files-found: error
- name: Upload Runtime Check Script
uses: actions/upload-artifact@v4
with:
name: runtime-check-script
path: .github/scripts/check-runtime.js
test-runtime:
name: Test Runtime on Node Versions
runs-on: ubuntu-latest
needs: build
strategy:
matrix:
node-version: [ 4.x, 6.x, 8.x, 10.x, 12.x, 14.x, 16.x, 18.x, 20.x ]
steps:
- name: Use Node.js version ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Switch Directories
run: |
cd /home/runner/work/craftgate-node-client/
mkdir check-runtime
cd check-runtime
npm init -y
- name: Download Packed Library
uses: actions/download-artifact@v4
with:
name: packed-library
path: /home/runner/work/craftgate-node-client/check-runtime/
- name: Download Runtime Check Script
uses: actions/download-artifact@v4
with:
name: runtime-check-script
path: /home/runner/work/craftgate-node-client/check-runtime/
- name: Execute Runtime Checks
working-directory: /home/runner/work/craftgate-node-client/check-runtime/
run: |
ls -R
FILENAME=$(ls *.tgz | tail -n 1)
npm i $FILENAME
node check-runtime.js