Skip to content

core: fix markdown tests #85

core: fix markdown tests

core: fix markdown tests #85

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Test @notesnook-importer/core
# Controls when the action will run.
on:
# Triggers the workflow on push events or manually
workflow_dispatch:
push:
branches: [master]
paths:
- "packages/core/**"
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v2
- name: Use Node.js 16.x
uses: actions/[email protected]
with:
node-version: 16.x
- run: |
npm i
npm run test:core -- --outputDiffMaxLines 10000 --outputDiffLines 10000