Skip to content

fix: Remove exclude-hours from some API calls #4320

fix: Remove exclude-hours from some API calls

fix: Remove exclude-hours from some API calls #4320

Workflow file for this run

name: Code coverage
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
actions: write
env:
VITE_COVERAGE: true
SHA: ${{ github.event.pull_request.head.sha || github.sha }}
jobs:
test-with-coverage:
name: Test with Coverage
runs-on: ubuntu-latest
steps:
- name: Set timezone
run: echo "TZ=Asia/Jerusalem" >> $GITHUB_ENV
- uses: actions/checkout@v6
- name: Use Node.js
uses: actions/setup-node@v6
with:
node-version: 24
- name: Run install
run: npm ci
- name: Install Playwright browser dependencies
timeout-minutes: 15
run: npx playwright install chromium
- name: Run test
run: npm test
- run: npx nyc report --reporter=lcovonly
- name: Upload to Coveralls
if: always()
continue-on-error: true
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}