Skip to content

Merge pull request #87 from nicoschoenteich/main #268

Merge pull request #87 from nicoschoenteich/main

Merge pull request #87 from nicoschoenteich/main #268

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 }}