Skip to content

test: frontend coverage report #65

test: frontend coverage report

test: frontend coverage report #65

Workflow file for this run

name: CI
on:
push:
branches:
- develop
jobs:
frontend-build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '14.x'
- name: Build and test frontend with coverage
run: |
cd client/memo-minder-web
npm install
npm run build
npm test -- --coverage --coverageReporters=html
- name: Upload coverage report
uses: actions/upload-artifact@v2
with:
name: frontend-coverage-report
path: client/memo-minder-web/coverage/
backend-build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '18.x'
- name: Test backend
run: |
cd memo-backend
npm install
npm test