Skip to content

computer_science/recursion/1_factorial: fixed bug where test could fail for 25! despite correct implementation #7

computer_science/recursion/1_factorial: fixed bug where test could fail for 25! despite correct implementation

computer_science/recursion/1_factorial: fixed bug where test could fail for 25! despite correct implementation #7

Workflow file for this run

name: Tests
on:
pull_request:
paths:
- '**/solution/*.js'
jobs:
tests:
name: Run solution tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- run: npm install
- run: npm run test -- solution