File tree Expand file tree Collapse file tree 3 files changed +6
-8
lines changed Expand file tree Collapse file tree 3 files changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -50,12 +50,14 @@ jobs:
50
50
- name : Compare Directories
51
51
id : diff
52
52
run : |
53
- if [ ! -d dist/ ]; then
53
+ if [ ! -d dist/ ]
54
+ then
54
55
echo "Expected dist/ directory does not exist. See status below:"
55
56
ls -la ./
56
57
exit 1
57
58
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
59
61
echo "Detected uncommitted changes after build. See status below:"
60
62
git diff --ignore-space-at-eol --text dist/
61
63
exit 1
Original file line number Diff line number Diff line change 57
57
id : test-action
58
58
uses : ./
59
59
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'
Original file line number Diff line number Diff line change 44
44
FILTER_REGEX_EXCLUDE : dist/**/*
45
45
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
46
46
LINTER_RULES_PATH : ${{ github.workspace }}
47
- VALIDATE_ALL_CODEBASE : true
47
+ VALIDATE_ALL_CODEBASE : false
48
48
VALIDATE_JAVASCRIPT_ES : false
49
49
VALIDATE_JAVASCRIPT_STANDARD : false
50
50
VALIDATE_JSCPD : false
You can’t perform that action at this time.
0 commit comments