Skip to content

test: Update main.yml #79

test: Update main.yml

test: Update main.yml #79

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@v3
- name: Jest coverage report
uses: ArtiomTr/[email protected]
with:
working-directory: ./client/memo-minder-web
github-token: ${{ secrets.TOKEN_FOR_MEMO }}
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