Skip to content

Merge branch 'develop' of github.com:moonlight-mod/moonlight into dev… #1

Merge branch 'develop' of github.com:moonlight-mod/moonlight into dev…

Merge branch 'develop' of github.com:moonlight-mod/moonlight into dev… #1

Workflow file for this run

name: Lint commits
on: [push, pull_request]
permissions:
contents: read
pages: write
id-token: write
jobs:
lint:
name: Lint commits
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
run_install: false
- uses: actions/setup-node@v3
with:
node-version: 18
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Save Code Linting Report JSON
run: npm run lint:report

Check failure on line 29 in .github/workflows/lint.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/lint.yml

Invalid workflow file

You have an error in your yaml syntax on line 29
continue-on-error: true
- name: Annotate Code Linting Results
# see https://github.com/ataylorme/eslint-annotate-action
uses: ataylorme/eslint-annotate-action@v2
with:
report-json: "eslint_report.json"