-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (34 loc) · 1.04 KB
/
scheduled-test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# 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
- name: Fetch and check out latest tag
run: |
git fetch --tags
LATEST_TAG=$(git describe --tags `git rev-list --tags --max-count=1`)
echo "Checking out latest tag: $LATEST_TAG"
git checkout $LATEST_TAG
echo "LATEST_TAG=$LATEST_TAG" >> $GITHUB_ENV
- 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