mirror of
https://github.com/sussy-code/smov.git
synced 2024-12-21 14:47:41 +01:00
50 lines
1.5 KiB
YAML
50 lines
1.5 KiB
YAML
|
name: Annotate linting
|
||
|
|
||
|
permissions:
|
||
|
actions: read # download artifact
|
||
|
checks: write # annotate
|
||
|
|
||
|
# this is done as a seperate workflow so
|
||
|
# the annotater has access to write to checks (to annotate)
|
||
|
on:
|
||
|
workflow_run:
|
||
|
workflows: ["Linting and Testing"]
|
||
|
types:
|
||
|
- completed
|
||
|
|
||
|
jobs:
|
||
|
annotate:
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- name: Download linting report
|
||
|
uses: actions/github-script@v3.1.0
|
||
|
with:
|
||
|
script: |
|
||
|
var artifacts = await github.actions.listWorkflowRunArtifacts({
|
||
|
owner: context.repo.owner,
|
||
|
repo: context.repo.repo,
|
||
|
run_id: ${{github.event.workflow_run.id }},
|
||
|
});
|
||
|
var matchArtifact = artifacts.data.artifacts.filter((artifact) => {
|
||
|
return artifact.name == "eslint_report.zip"
|
||
|
})[0];
|
||
|
var download = await github.actions.downloadArtifact({
|
||
|
owner: context.repo.owner,
|
||
|
repo: context.repo.repo,
|
||
|
artifact_id: matchArtifact.id,
|
||
|
archive_format: 'zip',
|
||
|
});
|
||
|
var fs = require('fs');
|
||
|
fs.writeFileSync('${{github.workspace}}/eslint_report.zip', Buffer.from(download.data));
|
||
|
|
||
|
- run: unzip eslint_report.zip
|
||
|
|
||
|
- run: ls -la
|
||
|
|
||
|
- name: Annotate linting
|
||
|
uses: ataylorme/eslint-annotate-action@v2
|
||
|
with:
|
||
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
||
|
report-json: "eslint_report.json"
|