Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/github-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@ jobs:
node-version: 20.11.0

- name: Install dependencies
run: npm ci --engine-strict # --engine-strict is used to fail-fast if deps require node versions unsupported by the repo
run: npm ci

- name: Check Node.js engine compatibility
run: npm run check-engine

- name: Perform dependencies analysis
run: npm run knip
Expand Down
36 changes: 36 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Tests

on:
push:
branches:
- v4
pull_request:
branches:
- v4

# No permissions are required for this workflow
permissions: {}

jobs:
test:
name: Unit and Integration
strategy:
fail-fast: false # Do not stop other jobs if one fails
matrix:
version: ["20.11.0", 22, 24, 25, 26]
os: [ubuntu-24.04, windows-2025, macos-15]
runs-on: ${{ matrix.os }}
steps:

- uses: actions/checkout@v6

- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.version }}

- name: Install dependencies
run: npm ci

- name: Run unit tests
run: npm run unit
81 changes: 0 additions & 81 deletions azure-pipelines.yml

This file was deleted.

200 changes: 21 additions & 179 deletions npm-shrinkwrap.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading