Skip to content

chore: Bump sinon from 18.0.0 to 19.0.2 #201

chore: Bump sinon from 18.0.0 to 19.0.2

chore: Bump sinon from 18.0.0 to 19.0.2 #201

Workflow file for this run

name: Lint
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
name: ${{ matrix.lint-target }}
strategy:
matrix:
lint-target: ["c++", "typescript"]
steps:
- uses: actions/checkout@v4
- name: Use Node.js LTS
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
cache: 'npm'
- name: "Build libmongocrypt"
shell: bash
run: |
npm run install:libmongocrypt
- if: matrix.lint-target == 'c++'
shell: bash
run: |
npm run check:clang-format
- if: matrix.lint-target == 'typescript'
shell: bash
run: |
npm run check:eslint