-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (41 loc) · 967 Bytes
/
ci.yml
File metadata and controls
47 lines (41 loc) · 967 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: CI
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
shellcheck:
name: Shellcheck
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Run Shellcheck
uses: ludeeus/action-shellcheck@master
with:
scandir: scripts
dogfood:
name: Dogfood action
runs-on: ubuntu-24.04
needs: shellcheck
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Run local action (PHAR mode)
uses: ./
with:
install-mode: phar
phar-version: '1.11.0'
analyze-changed-files-only: 'false'
paths: fixtures/
config: fixtures/cca.yaml
post-comment: false
upload-artifact: true
artifact-name: cca-dogfood-report
emit-annotations: true
upload-sarif: false
fail-on-threshold: false