Skip to content

fix: add v validator alias #5

fix: add v validator alias

fix: add v validator alias #5

Workflow file for this run

name: Testing
on:
push
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} //it's generated automatically
strategy:
matrix:
node-version: [ 18, 20, 22 ]
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test