Skip to content

Fix: Empty extension incompatibility maps should allow any colony version #221

Fix: Empty extension incompatibility maps should allow any colony version

Fix: Empty extension incompatibility maps should allow any colony version #221

Workflow file for this run

name: CI build and test
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 8.14.1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: pnpm run bootstrap
- 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