8000 Update question.md · psy-repos-typescript/wavesurfer.js@14f2584 · GitHub
[go: up one dir, main page]

Skip to content

[pull] main from katspaugh:main #28

[pull] main from katspaugh:main

[pull] main from katspaugh:main #28

Workflow file for this run

name: Lint
on: [pull_request]
jobs:
eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/workflows/yarn
- name: Run lint
run: npm run lint:report
continue-on-error: true
- name: Annotate code with linting results
uses: ataylorme/eslint-annotate-action@v3
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
report-json: "eslint_report.json"
0