Skip to content

build(deps-dev): bump semantic-release from 23.1.1 to 24.0.0 #1339

build(deps-dev): bump semantic-release from 23.1.1 to 24.0.0

build(deps-dev): bump semantic-release from 23.1.1 to 24.0.0 #1339

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
mongodb-version: ['6.0', '7.0']
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Start Mongo ${{ matrix.mongodb-version }}
uses: supercharge/mongodb-github-action@1.8.0
with:
mongodb-version: ${{ matrix.mongodb-version }}
- name: Run tests
run: |
npm i
npm run test:lint
npm run test:coverage
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}