chore(deps) bump mongodb-build-info
#1388
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: "Run Smoke Tests" | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| smoke-tests: | |
| name: "OS: ${{ matrix.runner }}, node@${{ matrix.node }}" | |
| strategy: | |
| matrix: | |
| runner: [ubuntu, macos, windows] | |
| node: [20.x, 22.x, 23.x] | |
| fail-fast: false | |
| runs-on: ${{ matrix.runner }}-latest | |
| timeout-minutes: 20 # Installing dependencies on windows can take a while | |
| 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: npx mongodb-runner -- exec -- sh -c 'env MONGOSH_SMOKE_TEST_SERVER=$MONGODB_URI npm run test-smoke' |