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 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