Skip to content

Add @/ alias and fix config polution #68

Add @/ alias and fix config polution

Add @/ alias and fix config polution #68

Workflow file for this run

name: Tests
on:
push:
branches: ["main"]
pull_request:
branches: ["*"]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20]
mongodb-version: [6.0, 7.0]
steps:
- name: Git checkout
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Start MongoDB
uses: supercharge/mongodb-github-action@1.11.0
with:
mongodb-version: ${{ matrix.mongodb-version }}
- run: npm install
- run: npm test
env:
CI: true