Skip to content

Commit 8d716ca

Browse files
committed
fix: storing-artifacts
1 parent 966e2e4 commit 8d716ca

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/main.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,18 @@ jobs:
1111
run: ci/build-app.sh
1212
- name: Test
1313
run: ci/unit-test-app.sh
14+
Linting:
15+
runs-on: ubuntu-latest
16+
needs: [Build]
17+
steps:
18+
- name: Download code
19+
uses: actions/download-artifact@v4
20+
with:
21+
name: code
22+
path: .
23+
- name: run linting
24+
uses: super-linter/super-linter/slim@v7
25+
env:
26+
DEFAULT_BRANCH: main
27+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
28+
DISABLE_ERRORS: true

0 commit comments

Comments
 (0)