Skip to content

version bump

version bump #26

Workflow file for this run

name: CI
on:
workflow_dispatch:
push:
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 18.x
- run: npm install
- run: npm run lint
- run: npm run build
- run: npm run test:only # so we don't run the code coverage badge creation script and let the line below handle it
- run: npm run badge:cc:ci # throws if README output differs to README to be checked in (thus detects if tests are not run)