Skip to content

Fixed review comments #19

Fixed review comments

Fixed review comments #19

Workflow file for this run

name: Run test
on: push
jobs:
run-test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [0, 1, 2, 3]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v4
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 -g yo
- run: npm install
- run: npm test
env:
NODES_TOTAL: 4
NODE_INDEX: ${{ matrix.node }}