Skip to content

feat(cap): Allow for dynamic choice of CAP capabilities #274

feat(cap): Allow for dynamic choice of CAP capabilities

feat(cap): Allow for dynamic choice of CAP capabilities #274

Workflow file for this run

name: Run test
on:
push:
pull_request:
branches: [main]
jobs:
run-test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [0, 1, 2, 3]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
registry-url: https://registry.npmjs.org/
- run: git config --global user.email "[email protected]" && git config --global user.name "Your Name"
- run: npm install
- run: npm test
env:
NODES_TOTAL: 4
NODE_INDEX: ${{ matrix.node }}