test: replace esmock with sinon (#117) #313
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 'lts/*' | |
- name: Install dependencies | |
run: npm install | |
- name: Lint files | |
run: npm run lint | |
test: | |
name: Test | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
node: [22.x, 21.x, 20.x, 18.x, "18.18.0"] | |
include: | |
- os: windows-latest | |
node: "lts/*" | |
- os: macOS-latest | |
node: "lts/*" | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install dependencies | |
run: npm install | |
- name: Run tests | |
run: npm run test |