Skip to content

Merge branch 'develop' of https://github.com/heystone999/memo-minder … #74

Merge branch 'develop' of https://github.com/heystone999/memo-minder …

Merge branch 'develop' of https://github.com/heystone999/memo-minder … #74

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
- name: Debug log
run: |
cd client/memo-minder-web
ls -al
- name: Download coverage report artifact
uses: actions/download-artifact@v2
with:
name: frontend-coverage-report
path: client/memo-minder-web/coverage
- name: Deploy coverage report to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.TOKEN_FOR_MEMO }}
publish_dir: client/memo-minder-web/coverage
- name: Deploy test report to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.TOKEN_FOR_MEMO }}
publish_dir: client/memo-minder-web/coverage
- name: Display coverage report link
run: echo "Coverage report is available at https://${{ github.repository }}/client/memo-minder-web/coverage/index.html"
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