chore(deps): bump express from 4.17.2 to 4.20.0 in /packages/origin-backend #8695
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: Lint & test | |
on: | |
pull_request: | |
branches: | |
- '*' | |
env: | |
IREC_CREATE_DEVICE_ISSUER: issueraccount | |
jobs: | |
cancel-previous: | |
name: 'Cancel Previous Runs' | |
runs-on: ubuntu-latest | |
timeout-minutes: 3 | |
steps: | |
- uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
run-tests: | |
services: | |
postgres: | |
image: postgres | |
env: | |
POSTGRES_DB: 'origin' | |
POSTGRES_PASSWORD: 'postgres' | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 10s | |
--health-retries 10 | |
ports: | |
- 5432:5432 | |
runs-on: ubuntu-latest | |
needs: cancel-previous | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v2-beta | |
with: | |
node-version: '14' | |
- name: Restore timestamp | |
run: | | |
sh scripts/restore-original-timestamps.sh | |
- name: Check dependency versions | |
run: node common/scripts/install-run-rush.js check | |
- name: Install application | |
run: | | |
node common/scripts/install-run-rush.js update | |
- name: Build application | |
run: node common/scripts/install-run-rush.js rebuild --verbose | |
- name: Run all UI unit tests | |
run: node common/scripts/install-run-rush.js test:ui | |
- name: Run all test:e2e in packages | |
run: node common/scripts/install-run-rush.js test:e2e | |
- name: Run all test:ci:contracts | |
run: node common/scripts/install-run-rush.js test:ci:contracts |