Skip to content

fix: suppress experimental warning for node 23 MONGOSH-1895 #11

fix: suppress experimental warning for node 23 MONGOSH-1895

fix: suppress experimental warning for node 23 MONGOSH-1895 #11

Workflow file for this run

name: "Run Smoke Tests"
on:
push:
branches:
- main
pull_request:
schedule:
- cron: "0 0 * * *"
jobs:
smoke-tests:
strategy:
matrix:
runner: [ubuntu-latest, macos-latest, windows-latest]
node: [20.x, 22.x, 23.x]
fail-fast: false
runs-on: ${{ matrix.runner }}
timeout-minutes: 15
env:
npm_config_loglevel: verbose
npm_config_foreground_scripts: "true"
PUPPETEER_SKIP_DOWNLOAD: "true"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: "npm"
- name: Install npm@10
run: npm install -g npm@10
- name: Install dependencies
run: npm ci
- name: Run smoke tests
run: npm run test-smoke