Skip to content

drop all fiber methods in core and cursor #15

drop all fiber methods in core and cursor

drop all fiber methods in core and cursor #15

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
lintcode:
name: lint
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
- name: setup node
uses: actions/setup-node@v3
with:
node-version: '14.x'
- name: cache dependencies
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm install
- run: npm run lint