Skip to content

Commit 4408589

Browse files
committed
workflows update
1 parent 4b6c16a commit 4408589

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

.github/workflows/check-dist.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,14 @@ jobs:
5050
- name: Compare Directories
5151
id: diff
5252
run: |
53-
if [ ! -d dist/ ]; then
53+
if [ ! -d dist/ ]
54+
then
5455
echo "Expected dist/ directory does not exist. See status below:"
5556
ls -la ./
5657
exit 1
5758
fi
58-
if [ "$(git diff --ignore-space-at-eol --text dist/ | wc -l)" -gt "0" ]; then
59+
if [ "$(git diff --ignore-space-at-eol --text dist/ | wc -l)" -gt "0" ]
60+
then
5961
echo "Detected uncommitted changes after build. See status below:"
6062
git diff --ignore-space-at-eol --text dist/
6163
exit 1

.github/workflows/ci.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,4 @@ jobs:
5757
id: test-action
5858
uses: ./
5959
with:
60-
milliseconds: 2000
61-
62-
- name: Print Output
63-
id: output
64-
run: echo "${{ steps.test-action.outputs.time }}"
60+
rl_json_path: './data/FD13-FullUSB.zip-report.rl.json'

.github/workflows/linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
FILTER_REGEX_EXCLUDE: dist/**/*
4545
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4646
LINTER_RULES_PATH: ${{ github.workspace }}
47-
VALIDATE_ALL_CODEBASE: true
47+
VALIDATE_ALL_CODEBASE: false
4848
VALIDATE_JAVASCRIPT_ES: false
4949
VALIDATE_JAVASCRIPT_STANDARD: false
5050
VALIDATE_JSCPD: false

0 commit comments

Comments
 (0)