Skip to content

Bump express from 4.18.3 to 4.19.2 #57

Bump express from 4.18.3 to 4.19.2

Bump express from 4.18.3 to 4.19.2 #57

Workflow file for this run

name: Build and test
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: npm ci && cd functions && npm ci
- name: Build functions
run: cd functions && npm run build
- name: Run tests
run: npm run test:ci