chore: add integration tests of openchemlib-utils (#246) #365
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Node.js CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
env: | |
NODE_VERSION_INTEGRATION: 22.x | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22.x | |
- name: Install dependencies | |
run: npm ci | |
- name: Run ESLint | |
run: npm run eslint | |
- name: Run Prettier | |
run: npm run prettier | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x, 20.x, 22.x] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
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@v4 | |
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@v4 | |
with: | |
name: build-integration | |
path: dist | |
- name: Run debug build | |
if: failure() | |
run: npm run build-debug-full | |
- name: Upload debug build and logs | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: debug-build-${{ matrix.node-version }} | |
path: | | |
dist/openchemlib-full.pretty.js | |
compile-full.log | |
retention-days: 1 | |
utils-integration: | |
name: Integration with openchemlib-utils | |
needs: test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
repository: 'cheminfo/openchemlib-utils' | |
- name: Use Node.js ${{ env.NODE_VERSION_INTEGRATION }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.NODE_VERSION_INTEGRATION }} | |
- name: Install dependencies | |
run: npm install | |
- name: Download OCL build | |
uses: actions/download-artifact@v4 | |
with: | |
name: build-integration | |
path: ocl-dist | |
- name: Replace OCL build in the dependencies | |
run: 'cp ocl-dist/* node_modules/openchemlib/dist/' | |
- name: Run unit tests | |
run: npm run test-only |