Skip to content
This repository has been archived by the owner on Oct 4, 2024. It is now read-only.

DC-#125: merge main into branch #7

DC-#125: merge main into branch

DC-#125: merge main into branch #7

Workflow file for this run

name: Frontend workflow
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v2
- name: Install dependencies
run: cd frontend && npm install
- name: Run tests
run: cd frontend && npm run test
- name: Upload coverage reports to Codecov with GitHub Action
uses: codecov/[email protected]
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
flags: frontend