Skip to content

Merge pull request #162 from ChetanXpro/dependabot/npm_and_yarn/types… #24

Merge pull request #162 from ChetanXpro/dependabot/npm_and_yarn/types…

Merge pull request #162 from ChetanXpro/dependabot/npm_and_yarn/types… #24

Workflow file for this run

name: Integration test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test