Markdown parser, done right. 100% CommonMark support, extensions, syntax plugins & high speed https://markdown-it.github.io/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

37 lines
668 B

name: CI
on:
push:
pull_request:
schedule:
- cron: '0 0 * * 3'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ '12', '14' ]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- name: Test
run: npm test
- name: Create coverage report
run: npm run report-coveralls
- name: Upload coverage report to coveralls.io
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}