Skip to content

Likes dislikes badge on Comment and Card components #214

Likes dislikes badge on Comment and Card components

Likes dislikes badge on Comment and Card components #214

Workflow file for this run

name: Server unit tests
on:
push:
branches:
- master
pull_request:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install server dependencies
run: |
cd server
npm install
- name: Run Jest tests
run: |
cd server
npm test