Fix the example with Firefox on macOS when managed storage isn't available. #20
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: lint | |
on: | |
pull_request: | |
paths: | |
- "**.js" | |
jobs: | |
eslint: | |
name: eslint | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "latest" | |
cache: "npm" | |
- run: npm ci | |
- uses: reviewdog/action-eslint@v1 | |
with: | |
reporter: github-pr-review | |
eslint_flags: "." | |
filter_mode: "file" | |
fail_on_error: true |