Skip to content

Bump express from 4.19.2 to 4.21.1 #33

Bump express from 4.19.2 to 4.21.1

Bump express from 4.19.2 to 4.21.1 #33

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- main
- 'release/**'
pull_request:
branches:
- main
- 'release/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 'lts/*'
- name: Install dependencies
run: yarn install
- name: Run linters
run: yarn lint
- name: Build project
run: yarn build
- name: Run tests
run: yarn test