Skip to content

Merge branch 'main' into feature/91-vylepšení-pipeline #211

Merge branch 'main' into feature/91-vylepšení-pipeline

Merge branch 'main' into feature/91-vylepšení-pipeline #211

Workflow file for this run

name: Build frontend
run-name: "Run ${{github.run_id}}, triggered by ${{github.actor}}"
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
frontend:
runs-on: ubuntu-latest
permissions:
contents: read
defaults:
run:
working-directory: frontend
steps:
- uses: actions/checkout@v3
- name: Install dependencies
uses: actions/setup-node@v3
with:
node-version: 20
cache: 'npm'
cache-dependency-path: frontend/package-lock.json
run: npm install
- name: Build
run: npm run build
- name: Run tests
run: npm run test
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: frontend
file: frontend/coverage/cobertura-coverage.xml