Skip to content

Bump express from 4.18.1 to 4.19.2 #3

Bump express from 4.18.1 to 4.19.2

Bump express from 4.18.1 to 4.19.2 #3

Workflow file for this run

name: PR Actions
on:
pull_request:
branches:
- main
- dev
env:
CI: true
jobs:
test:
name: Test Suite
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "18.x"
cache: 'yarn'
- name: Install NPM Dependencies
run: yarn install
- name: Run Build All
run: yarn build:all
- name: Run Linting
run: yarn lint
- name: Run Unit & Integration Tests
run: yarn test