This repository has been archived by the owner on Jul 24, 2024. It is now read-only.
build(deps-dev): bump eslint from 8.57.0 to 9.1.0 #296
Workflow file for this run
This file contains 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: Coverage | |
on: | |
push: | |
branches-ignore: | |
- "dependabot/**" | |
paths: | |
- ".nycrc.json" | |
- "**/*.js" | |
- "test/**" | |
- "package.json" | |
- "bin/node-sass" | |
- ".github/workflows/coverage.yml" | |
pull_request: | |
paths: | |
- ".nycrc.json" | |
- "**/*.js" | |
- "test/**" | |
- "package.json" | |
- "bin/node-sass" | |
- ".github/workflows/coverage.yml" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
if: github.repository_owner == 'sass' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install packages | |
run: npm install --unsafe-perm | |
- name: Run Coverage | |
run: npm run coverage | |
- name: Coveralls GitHub Action | |
uses: coverallsapp/github-action@v2 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |