Skip to content

Merge branch 'hotfix/close-project-dropdown-on-click-iframes' into st… #1654

Merge branch 'hotfix/close-project-dropdown-on-click-iframes' into st…

Merge branch 'hotfix/close-project-dropdown-on-click-iframes' into st… #1654

Workflow file for this run

name: Run Unit Tests, Lint Files and Build Project
on: [push, pull_request]
jobs:
unit-tests:
runs-on: ubuntu-latest
name: Tests Coverage
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install Dependencies
run: npm ci
- name: Build application
run: npm run build
- name: Run lint
run: npm run lint
- name: Run Unit Tests
run: npm run test:coverage
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}