Skip to content

build(deps): bump express from 4.19.2 to 4.20.0 (#3) #13

build(deps): bump express from 4.19.2 to 4.20.0 (#3)

build(deps): bump express from 4.19.2 to 4.20.0 (#3) #13

Workflow file for this run

name: Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
MONGO_CONNECTION_STRING: mongodb://root:example@localhost:27017/invitation?authSource=admin
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['20.x', '22.x']
services:
# Label used to access the service container
mongo:
image: mongo:7
ports:
- 27017:27017
env:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: example
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: corepack enable && yarn --immutable
- run: yarn build
- run: yarn test