Skip to content

Update logo on Welcome and Login page (#704) #1385

Update logo on Welcome and Login page (#704)

Update logo on Welcome and Login page (#704) #1385

Workflow file for this run

# This workflow will install node dependencies (and cache them) and run node.js tests
name: Node.js CI
on: [push]
jobs:
testing:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Setup env file
run: cp .env.example .env
- run: npm install
- run: npm run test