Skip to content

feat: improve exports for ESM and add shorthand export for the full.pretty build #148

feat: improve exports for ESM and add shorthand export for the full.pretty build

feat: improve exports for ESM and add shorthand export for the full.pretty build #148

Workflow file for this run

name: Node.js CI
on:
push:
branches:
- main
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 20.x
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npm run eslint
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
fail-fast: false
steps:
- uses: actions/checkout@v4
- 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