Skip to content

chore(deps): bump @objectql/driver-mongo from 3.0.1 to 4.0.1 #672

chore(deps): bump @objectql/driver-mongo from 3.0.1 to 4.0.1

chore(deps): bump @objectql/driver-mongo from 3.0.1 to 4.0.1 #672

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
test:
name: Test (Node ${{ matrix.node-version }})
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x]
fail-fast: false
steps:
- name: Checkout Repo
uses: actions/checkout@v6
- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: 9
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Build
run: pnpm run build
- name: Test
run: pnpm run test
- name: Upload Coverage
if: matrix.node-version == '20.x'
uses: codecov/codecov-action@v5
continue-on-error: true
with:
files: ./coverage/coverage-final.json
fail_ci_if_error: false