Skip to content

Merge pull request #6 from tapsilat/dependabot/npm_and_yarn/zod-4.1.13 #30

Merge pull request #6 from tapsilat/dependabot/npm_and_yarn/zod-4.1.13

Merge pull request #6 from tapsilat/dependabot/npm_and_yarn/zod-4.1.13 #30

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test
env:
CI: true