Skip to content

Fixed: Throw an exception if both lazyMultiple and multiple are set #106 #22

Fixed: Throw an exception if both lazyMultiple and multiple are set #106

Fixed: Throw an exception if both lazyMultiple and multiple are set #106 #22

Workflow file for this run

# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [4, 6, 8, 10, 12, 14, 16, 17]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm install
- run: npm run test:ci