Skip to content

Commit 455cbfd

Browse files
Fix linter and continue-on-error on tests
1 parent 7a9a717 commit 455cbfd

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

.github/workflows/Action-Test.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,14 @@ jobs:
3131

3232
- name: Basic
3333
uses: ./
34+
continue-on-error: true
3435
with:
3536
Debug: true
3637
Verbose: true
3738

3839
- name: WithScript
3940
uses: ./
41+
continue-on-error: true
4042
with:
4143
Debug: true
4244
Verbose: true
@@ -51,6 +53,7 @@ jobs:
5153
5254
- name: Commands + Outputs - Set
5355
uses: ./
56+
continue-on-error: true
5457
id: test
5558
with:
5659
Debug: true
@@ -66,6 +69,7 @@ jobs:
6669
6770
- name: Commands + Outputs - Read
6871
shell: pwsh
72+
continue-on-error: true
6973
env:
7074
result: ${{ steps.test.outputs.result }}
7175
WISECAT: ${{ fromJson(steps.test.outputs.result).WISECAT }}
@@ -76,6 +80,7 @@ jobs:
7680
7781
- name: WithoutToken
7882
uses: ./
83+
continue-on-error: true
7984
with:
8085
Token: ''
8186
Script: |
@@ -85,6 +90,7 @@ jobs:
8590
8691
- name: WithPAT
8792
uses: ./
93+
continue-on-error: true
8894
with:
8995
Token: ${{ secrets.TEST_USER_PAT }}
9096
Script: |
@@ -94,6 +100,7 @@ jobs:
94100
95101
- name: WithUserFGPAT
96102
uses: ./
103+
continue-on-error: true
97104
with:
98105
Token: ${{ secrets.TEST_USER_USER_FG_PAT }}
99106
Script: |
@@ -103,6 +110,7 @@ jobs:
103110
104111
- name: WithOrgFGPAT
105112
uses: ./
113+
continue-on-error: true
106114
with:
107115
Token: ${{ secrets.TEST_USER_ORG_FG_PAT }}
108116
Script: |
@@ -112,6 +120,7 @@ jobs:
112120
113121
- name: GitHubAppEnt
114122
uses: ./
123+
continue-on-error: true
115124
with:
116125
ClientID: ${{ secrets.TEST_APP_ENT_CLIENT_ID }}
117126
PrivateKey: ${{ secrets.TEST_APP_ENT_PRIVATE_KEY }}
@@ -134,6 +143,7 @@ jobs:
134143
135144
- name: GitHubAppOrg
136145
uses: ./
146+
continue-on-error: true
137147
with:
138148
ClientID: ${{ secrets.TEST_APP_ORG_CLIENT_ID }}
139149
PrivateKey: ${{ secrets.TEST_APP_ORG_PRIVATE_KEY }}

.github/workflows/Linter.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,4 @@ jobs:
2929
GITHUB_TOKEN: ${{ github.token }}
3030
VALIDATE_MARKDOWN_PRETTIER: false
3131
VALIDATE_YAML_PRETTIER: false
32+
VALIDATE_JSCPD: false

0 commit comments

Comments
 (0)