mirror of
https://github.com/logto-io/logto.git
synced 2024-12-16 20:26:19 -05:00
4173b49dff
Co-authored-by: Renovate Bot <bot@renovateapp.com>
34 lines
785 B
YAML
34 lines
785 B
YAML
name: Upload Annotations
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
pull_request:
|
|
branches: [master]
|
|
|
|
jobs:
|
|
upload-annotations:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Setup Node and pnpm
|
|
uses: logto-io/actions-node-pnpm-run-steps@v1.1.0
|
|
|
|
- name: Prepack
|
|
run: pnpm prepack
|
|
|
|
- name: Lint with Report
|
|
run: pnpm -- lerna run --parallel lint:report && node merge-eslint-reports.js
|
|
|
|
- name: Annotate Code Linting Results
|
|
uses: ataylorme/eslint-annotate-action@1.2.0
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Upload ESLint report
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: eslint_report.json
|
|
path: eslint_report.json
|