Skip to content

Bump MongoDB.Driver from 2.29.0 to 3.0.0 #116

Bump MongoDB.Driver from 2.29.0 to 3.0.0

Bump MongoDB.Driver from 2.29.0 to 3.0.0 #116

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-24.04
strategy:
matrix:
node-version: [20.x, 22.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- run: npm i --ci
working-directory: NoteApp/ClientApp
- name: Restore dependencies
run: dotnet restore
- run: npm run build
working-directory: NoteApp/ClientApp
- name: Build
run: dotnet build --no-restore