Skip to content

chore(deps-dev): bump @eslint/eslintrc from 3.3.1 to 3.3.3 #3028

chore(deps-dev): bump @eslint/eslintrc from 3.3.1 to 3.3.3

chore(deps-dev): bump @eslint/eslintrc from 3.3.1 to 3.3.3 #3028

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 }}