chore(deps-dev): bump @eslint/js from 9.35.0 to 9.39.2 (#1390) #3027
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 }} |