Skip to content

build(deps-dev): bump supertest from 6.3.4 to 7.0.0 (#1530) #1527

build(deps-dev): bump supertest from 6.3.4 to 7.0.0 (#1530)

build(deps-dev): bump supertest from 6.3.4 to 7.0.0 (#1530) #1527

Workflow file for this run

name: standard-ci
on:
pull_request:
paths-ignore:
- '**.md'
push:
branches:
- master
paths-ignore:
- '**.md'
jobs:
test:
strategy:
matrix:
node: [18, 20]
os: [ubuntu-latest]
name: Node v${{ matrix.node }} - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
services:
mongodb:
image: mongo
ports:
- 27017:27017
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: yarn install --immutable
- name: Build
run: yarn build
- name: Test
run: yarn mocha
- name: Lint
run: yarn lint