Skip to content

✨ add support for UsMailV2, BillOfLadingV1, FR EnergyBillV1,… #1193

✨ add support for UsMailV2, BillOfLadingV1, FR EnergyBillV1,…

✨ add support for UsMailV2, BillOfLadingV1, FR EnergyBillV1,… #1193

Workflow file for this run

name: Test
on:
- push
jobs:
run-tests:
name: Run Tests
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- "18"
- "20"
- "22"
steps:
- name: Check out Git repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Install Node.js dependencies
run: npm ci
- name: Compilation
run: npm run build
- name: Test code
run: npm run test