From b1254f42f084ba014d361679c2af69ddc3e94104 Mon Sep 17 00:00:00 2001 From: ciatph Date: Sun, 26 Jan 2025 22:35:11 +0800 Subject: [PATCH 1/3] chore: rename test workflow for ci --- .github/workflows/{test.yml => ci-test.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{test.yml => ci-test.yml} (100%) diff --git a/.github/workflows/test.yml b/.github/workflows/ci-test.yml similarity index 100% rename from .github/workflows/test.yml rename to .github/workflows/ci-test.yml From 5596f8b5270b5f50eb18c40f05329a682d67066f Mon Sep 17 00:00:00 2001 From: ciatph Date: Sun, 26 Jan 2025 22:48:45 +0800 Subject: [PATCH 2/3] feat: run tests every sunday, #134 --- .github/workflows/scheduled-test.yml | 33 ++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/scheduled-test.yml diff --git a/.github/workflows/scheduled-test.yml b/.github/workflows/scheduled-test.yml new file mode 100644 index 0000000..78f6f75 --- /dev/null +++ b/.github/workflows/scheduled-test.yml @@ -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: + pull-images: + 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 From 77488438b8aa109b0c409d4990b921d3f06960e9 Mon Sep 17 00:00:00 2001 From: ciatph Date: Sun, 26 Jan 2025 22:50:09 +0800 Subject: [PATCH 3/3] chore: rename job --- .github/workflows/scheduled-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/scheduled-test.yml b/.github/workflows/scheduled-test.yml index 78f6f75..c477cfc 100644 --- a/.github/workflows/scheduled-test.yml +++ b/.github/workflows/scheduled-test.yml @@ -7,7 +7,7 @@ on: - cron: '5 4 * * 0' jobs: - pull-images: + test: name: Scheduled Test runs-on: ubuntu-latest env: