-
Notifications
You must be signed in to change notification settings - Fork 22
54 lines (52 loc) · 1.29 KB
/
nodejs.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
name: Node.js CI
on:
push:
branches: main
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npm run eslint
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '17.x'
- name: Install GWT
run: ./scripts/get-gwt.sh
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
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: Run debug build
if: failure()
run: npm run build-debug-full
- name: Upload debug build and logs
if: failure()
uses: actions/upload-artifact@v3
with:
name: debug-build
path: |
dist/openchemlib-full.pretty.js
compile-full.log