Skip to content

Export event factories from main entrypoint #139

Export event factories from main entrypoint

Export event factories from main entrypoint #139

Workflow file for this run

name: CI build and test
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- uses: actions/checkout@v2
- uses: pnpm/action-setup@v2
with:
version: 8.6.5
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: pnpm --filter "contractor" install --ignore-scripts
- run: pnpm --filter "contractor" run build
- run: pnpm install --frozen-lockfile
- run: pnpm run lint
- run: pnpm run build
env:
NODE_OPTIONS: --max-old-space-size=4096
- run: pnpm run test
env:
CI: true
NODE_OPTIONS: --max-old-space-size=4096