-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #135 from ciatph/feat/ciatph-134
feat: run scheduled tests
- Loading branch information
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Runs tests on the app by schedule | ||
name: Test App on Schedule | ||
|
||
on: | ||
schedule: | ||
# Runs "At 04:05 on Sunday." | ||
- cron: '5 4 * * 0' | ||
|
||
jobs: | ||
test: | ||
name: Scheduled Test | ||
runs-on: ubuntu-latest | ||
env: | ||
EXCEL_FILE_URL: ${{ secrets.EXCEL_FILE_URL }} | ||
SHEETJS_COLUMN: ${{ secrets.SHEETJS_COLUMN }} | ||
SORT_ALPHABETICAL: ${{ secrets.SORT_ALPHABETICAL }} | ||
SPECIAL_CHARACTERS: ${{ secrets.SPECIAL_CHARACTERS }} | ||
steps: | ||
- name: Checkout the repository | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ github.event.release.tag_name }} | ||
|
||
- name: Use NodeJS v16.14.2 | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16.14.2 | ||
|
||
- name: Install Dependencies and Test | ||
run: | | ||
cd app | ||
npm install | ||
npm test |