Skip to content

Allow fn for .pipe which returns something but doesn't provide #90

Allow fn for .pipe which returns something but doesn't provide

Allow fn for .pipe which returns something but doesn't provide #90

Workflow file for this run

name: Lint
on: [pull_request]
jobs:
lint:
name: ✅ Lint
runs-on: ubuntu-latest
timeout-minutes: 2
steps:
- uses: actions/checkout@v1
- uses: actions/cache@v1
with:
path: node_modules
key: ${{ runner.OS }}-build-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-build-${{ env.cache-name }}-
${{ runner.OS }}-build-
${{ runner.OS }}-
- run: npm install
- run: npm run lint