Skip to content

feat(ux): improve push to community feedback and filter low-quality c… #5

feat(ux): improve push to community feedback and filter low-quality c…

feat(ux): improve push to community feedback and filter low-quality c… #5

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm install --legacy-peer-deps
- name: Run tests with coverage
run: npm run test:coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
use_oidc: true
files: ./coverage/coverage-final.json
flags: unittests
name: openboot-web-coverage
fail_ci_if_error: false
- name: Build
run: npm run build