Skip to content

Update README.md

Update README.md #146

Workflow file for this run

name: Test
on:
push:
branches:
- '**'
tags-ignore:
- 'v*'
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [20.9.0, 20.x, 22.x]
steps:
- name: Checkout πŸ›ŽοΈ
uses: actions/checkout@v4
- name: Node 🧰
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- name: Install πŸ“¦
run: npm ci
- name: Lint πŸ”Ž
run: |
npm run ts:check
npm run lint
- name: Test πŸ› + Coverage 🌈
run: npm run coverage