Skip to content

add rudimentary converter named convert-asciidoc #455

add rudimentary converter named convert-asciidoc

add rudimentary converter named convert-asciidoc #455

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install dependencies
run: npm i
- name: Run linter
run: npm run lint
- name: Run tests
run: |
npm run gen
npm t