Skip to content

If walkDirectory is executed on a non-existent path, it returns an … #276

If walkDirectory is executed on a non-existent path, it returns an …

If walkDirectory is executed on a non-existent path, it returns an … #276

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [18, 20]
name: Using Node ${{ matrix.node }} environment
steps:
- uses: actions/checkout@v3
- uses: actions/[email protected]
with:
cache: "npm"
node-version: ${{ matrix.node }}
- run: npm i
- run: npm run lint
- run: npm test