Skip to content

Merge pull request #5 from amochkin/feat/ver/2 #35

Merge pull request #5 from amochkin/feat/ver/2

Merge pull request #5 from amochkin/feat/ver/2 #35

Workflow file for this run

name: Tests
on:
push:
paths-ignore:
- 'docs/**'
- 'README.md'
- 'LICENSE'
- '.editorconfig'
branches:
- main
- master
pull_request:
paths-ignore:
- 'docs/**'
- 'README.md'
- 'LICENSE'
- '.editorconfig'
branches:
- main
- master
jobs:
test:
runs-on: ${{ matrix.os }}
timeout-minutes: 30
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
node: [18.x, 20.x, 22.x]
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Install modules
run: npm install
- name: Run tests
run: npm test