-
Notifications
You must be signed in to change notification settings - Fork 25
92 lines (89 loc) · 2.51 KB
/
nodejs.yml
File metadata and controls
92 lines (89 loc) · 2.51 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
name: Node.js CI
on:
push:
branches:
- main
pull_request:
env:
NODE_VERSION_INTEGRATION: 24.x
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 24.x
- name: Install dependencies
run: npm ci
- name: Check types
run: npm run check-types
- name: Run ESLint
run: npm run eslint
- name: Run Prettier
run: npm run prettier
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x, 24.x]
fail-fast: false
steps:
- uses: actions/checkout@v6
- uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: '21'
- name: Install GWT
run: ./scripts/get-gwt.sh
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Build OCL
run: npm run build
- name: Run tests
run: npm run test-only
- name: Upload build to test integration with openchemlib-utils
if: matrix.node-version == env.NODE_VERSION_INTEGRATION
uses: actions/upload-artifact@v6
with:
name: build-integration
path: dist
- name: Run debug build
if: failure()
run: npm run build-java-debug-verbose
- name: Upload debug build and logs
if: failure()
uses: actions/upload-artifact@v6
with:
name: debug-build-${{ matrix.node-version }}
path: |
lib/java/openchemlib.debug.js
compile.debug.log
retention-days: 1
utils-integration:
name: Integration with openchemlib-utils
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
repository: 'cheminfo/openchemlib-utils'
- name: Use Node.js ${{ env.NODE_VERSION_INTEGRATION }}
uses: actions/setup-node@v6
with:
node-version: ${{ env.NODE_VERSION_INTEGRATION }}
- name: Install dependencies
run: npm install
- name: Download OCL build
uses: actions/download-artifact@v7
with:
name: build-integration
path: ocl-dist
- name: Replace OCL build in the dependencies
run: 'cp -r ocl-dist/* node_modules/openchemlib/dist/'
- name: Run unit tests
run: npm run test-only