Skip to content

Merge pull request #84 from jspsych/revert-82-main #413

Merge pull request #84 from jspsych/revert-82-main

Merge pull request #84 from jspsych/revert-82-main #413

Workflow file for this run

name: build
on: [push, pull_request]
env:
HUSKY: 0
jobs:
test:
name: Build, lint, and test on Node.js ${{ matrix.node }}
runs-on: ubuntu-latest
strategy:
matrix:
node: [18.x, 20.x]
steps:
- uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Install npm@v7
run: npm install -g npm@7
- name: Install dependencies
run: npm ci
- name: Build packages
run: npm run build
- name: Run tests
run: npm run test -- --ci --coverage --maxWorkers=2
env:
NODE_OPTIONS: "--max-old-space-size=4096" # Increase heap size for jest