You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- src/helpers/: Helper functions and utilities used throughout the project.
76
+
- src/interfaces/: TypeScript interfaces for typing and structure definitions.
77
+
- src/test_data/: Sample data for tests.
78
+
- src/tests/: Contains all test files.
79
+
- setupTests.ts: A setup file for Jest, which runs before each test to load environment variables from .env file.
80
+
- jest.config.ts: Jest configuration file for test runner settings.
81
+
- tsconfig.json: TypeScript configuration file that defines how the TypeScript compiler should behave.
53
82
54
83
## Third-Party Libraries
55
84
### Jest Runner Groups
@@ -105,4 +134,29 @@ describe.each([
105
134
});
106
135
}
107
136
);
108
-
```
137
+
```
138
+
139
+
## GitHub Actions
140
+
### GitHub Actions - Nightly Workflow
141
+
This repository includes a GitHub Actions workflow that runs every night at midnight (UTC). The workflow is triggered using a cron schedule and is designed to automate tasks like testing on a daily basis.
142
+
143
+
#### Workflow Details:
144
+
-**Trigger Time:** Midnight (00:00 UTC) every day.
This repository includes a GitHub Actions workflow that allows you to run specific groups of tests on demand. The workflow can be manually triggered via the GitHub interface using `workflow_dispatch`, where you can select a test group to run.
152
+
153
+
### Workflow Details:
154
+
-**Trigger:** Manually using the `Run workflow` button from the GitHub Actions tab.
0 commit comments