Skip to content

Add CI badge to readme #18

Add CI badge to readme

Add CI badge to readme #18

Workflow file for this run

name: ci
on:
push:
branches:
- main
permissions:
contents: write
jobs:
verify:
runs-on: ubuntu-latest
strategy:
matrix:
node: [18, 20, 22]
steps:
- name: Checkout the repository
uses: actions/checkout@v2
- name: Setup Node.js ${{ matrix.node }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
cache: npm
- name: Install dependencies
run: npm ci
- name: Verify
run: npm run verify