Skip to content

fix: upgrade marked from 4.2.12 to 4.3.0 #11

fix: upgrade marked from 4.2.12 to 4.3.0

fix: upgrade marked from 4.2.12 to 4.3.0 #11

Workflow file for this run

name: CI
on:
push:
branches: ['**']
pull_request:
branches: ['master']
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['ubuntu-latest']
node: [8,10,12,14,16]
name: Testing Node ${{ matrix.node }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- run: npm install
- run: npm test