Skip to content

chore: update variables name #445

chore: update variables name

chore: update variables name #445

Workflow file for this run

name: Node.js CI
on:
push:
branches:
- main
pull_request:
jobs:
nodejs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
mongodb-version: ['6.0']
defaults:
run:
working-directory: './docker'
steps:
- name: Git checkout
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Start MongoDB
uses: supercharge/[email protected]
with:
mongodb-version: ${{ matrix.mongodb-version }}
- run: npm install
- run: npm test
env:
CI: true