We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c0c8f6 commit 209e2f6Copy full SHA for 209e2f6
.github/workflows/check-sample.yml
@@ -50,11 +50,6 @@ jobs:
50
let error = false;
51
52
try {
53
- // Check if the checklist file exists
54
- if (!fs.existsSync('checklist.txt')) {
55
- throw new Error("Samples checklist file does not exist. Please fix the issues and try again.");
56
- }
57
-
58
// Read the checklist from the file
59
checklist = fs.readFileSync('checklist.txt', 'utf8');
60
checklist = checklist.trim();
@@ -65,7 +60,7 @@ jobs:
65
error = true;
66
61
}
67
62
} catch (readFileError) {
68
- throw new Error(Could not read samples checklist from file. Please fix the issues and try again.")
63
+ throw new Error("Could not read samples checklist from file. Please fix the issues and try again.")
69
64
70
71
0 commit comments