Skip to content

changed workflow for frontend #11

changed workflow for frontend

changed workflow for frontend #11

Workflow file for this run

name: Build frontend
run-name: "Run ${{github.run_id}}, triggered by ${{github.actor}}"
on:
push:
branches: "*"
pull_request:
branches: "*"
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
defaults:
run:
working-directory: frontend
steps:
- uses: actions/checkout@v3
- name: Checkout frontend folder
- run: cd frontend
- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 20.x
cache: 'npm'
- name: npm install and npm run CI commands
run: |
npm i
npm run test:ci
npm run build:ci
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: frontend
slug: ${{ github.repository }}
file: frontend/coverage/lcov-report/lcov.info