Skip to content

docs: update readme #10

docs: update readme

docs: update readme #10

name: tests
on: [push]
jobs:
test-nodejs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["18.x", "20.x", "22.x"]
steps:
- uses: actions/checkout@v4
- name: Enable corepack
run: corepack enable
- name: Using Node.js ${{matrix.node-version}}
uses: actions/setup-node@v4
with:
node-version: ${{matrix.node-version}}
cache: 'yarn'
- name: Install dependencies
run: yarn install
- name: Run tests
run: yarn test