docs(compatibility): add note that Mongoose ^6.5 works with MongoDB server 7.x #3114
This file contains hidden or 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: TypeScript Benchmark | |
on: | |
pull_request: | |
paths: | |
- ".github/workflows/benchmark.yml" | |
- "package.json" | |
- "types/**" | |
- "benchmarks/typescript/**" | |
push: | |
branches: | |
- master | |
paths: | |
- ".github/workflows/benchmark.yml" | |
- "package.json" | |
- "types/**" | |
- "benchmarks/typescript/**" | |
permissions: | |
contents: read | |
jobs: | |
typescript: | |
runs-on: ubuntu-22.04 | |
name: Benchmark TypeScript Types | |
steps: | |
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0 | |
with: | |
fetch-depth: 0 | |
- name: Setup node | |
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0 | |
with: | |
node-version: 16 | |
- run: npm install | |
- run: node ./scripts/create-tarball.js | |
- run: npm run ts-benchmark |