Skip to content

chore(deps-dev): bump @eslint/js from 9.35.0 to 9.39.2 (#1390) #3027

chore(deps-dev): bump @eslint/js from 9.35.0 to 9.39.2 (#1390)

chore(deps-dev): bump @eslint/js from 9.35.0 to 9.39.2 (#1390) #3027

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@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: latest
- name: Run install
run: npm ci
- run: npx playwright install chromium
- name: Run test
run: npm test
- run: npx nyc report --reporter=lcovonly
- name: Upload to Coveralls
if: always()
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}