Skip to content

fix: yield intermediate blocks when path is not found #136

fix: yield intermediate blocks when path is not found

fix: yield intermediate blocks when path is not found #136

Workflow file for this run

name: build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- run: npm ci
- run: npm run lint
test:
name: Test Node v${{ matrix.node }}
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 16, 18 ]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- run: npm ci
- run: npm test