Skip to content

TCES-41 urd create and update user information to be updated #44

TCES-41 urd create and update user information to be updated

TCES-41 urd create and update user information to be updated #44

Workflow file for this run

name: Automated Server PR Tests and Lint
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
server-tests-and-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Install server dependencies
run: |
cd server
npm install
- name: Run server tests
run: |
cd server
npm run test
- name: Run server linter
run: |
cd server
npm run lint