From 6cc31a721e854bf94383f574751c742db7e389e8 Mon Sep 17 00:00:00 2001 From: Rodrigo Meza Aranda Date: Sun, 18 May 2025 15:06:32 -0400 Subject: [PATCH 1/2] feat: run script in action --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a37fa24..ccdee72 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,4 +28,7 @@ jobs: run: yarn lint - name: Run tests - run: yarn test \ No newline at end of file + run: yarn test + + - name: Run automation script + run: ./scripts/automation.sh \ No newline at end of file From 2a6624cacf156a5033bdcbb09c873a63fcb81d77 Mon Sep 17 00:00:00 2001 From: Rodrigo Meza Aranda Date: Sun, 18 May 2025 15:10:23 -0400 Subject: [PATCH 2/2] feat: automation script as new job in CI --- .github/workflows/ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ccdee72..264ffee 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,5 +30,15 @@ jobs: - name: Run tests run: yarn test + run-automation: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Give automation execution permission + run: chmod +x ./scripts/automation.sh + - name: Run automation script run: ./scripts/automation.sh \ No newline at end of file