From 23e92a5cbd25e2c2290ef68d1c14667833866162 Mon Sep 17 00:00:00 2001 From: Mike Cornwell Date: Wed, 29 Jan 2025 08:48:55 -0500 Subject: [PATCH 1/2] ci(tests): fix github tests --- .github/workflows/feature.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/workflows/feature.yml b/.github/workflows/feature.yml index 72d8eee..864806f 100644 --- a/.github/workflows/feature.yml +++ b/.github/workflows/feature.yml @@ -14,7 +14,6 @@ jobs: strategy: matrix: node-version: [18.x, 20.x, 22.x] - mongodb-version: ['6.0', '7.0', '8.0'] steps: - uses: actions/checkout@v2 @@ -22,10 +21,6 @@ jobs: uses: actions/setup-node@v2 with: node-version: ${{ matrix.node-version }} - - name: Start MongoDB - uses: supercharge/mongodb-github-action@1.12.0 - with: - mongodb-version: ${{ matrix.mongodb-version }} - name: Install dependencies run: npm install From 25993a686e1c941321fbbf847c4c5c280d7d463a Mon Sep 17 00:00:00 2001 From: Mike Cornwell Date: Wed, 29 Jan 2025 08:51:37 -0500 Subject: [PATCH 2/2] ci(tests): fix unit tests --- .github/workflows/ut.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ut.yml b/.github/workflows/ut.yml index 2817c07..9db5984 100644 --- a/.github/workflows/ut.yml +++ b/.github/workflows/ut.yml @@ -25,7 +25,7 @@ jobs: run: npm install - name: Run Unit Tests run: npm test - - run: npm run coverage + - run: npm run test:coverage - name: Coveralls uses: coverallsapp/github-action@master