Skip to content

test: Update main.yml(on: push) #77

test: Update main.yml(on: push)

test: Update main.yml(on: push) #77

Workflow file for this run

name: CI
on:
push:
branches:
- develop
jobs:
frontend-build-and-test:
runs-on: ubuntu-latest
steps:
- 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