Skip to content

Fix readme gen

Fix readme gen #63

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
testing:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 20
- name: npm setup
run: npm install -g npm@latest
- name: Build and test
run: |
npm install
npm test
npm run coverage
env:
CI: true