build(deps): bump express from 4.18.2 to 4.19.2 #81
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: React CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Build and Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout release source | |
uses: actions/checkout@v2 | |
- name: Setup Node v3 | |
uses: actions/setup-node@v3 | |
- name: Install dependencies | |
run: npm ci | |
- name: Perform production build | |
run: npm run build | |
- name: Perform unit/integration tests | |
run: npm run test |