diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a37fa24..264ffee 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,4 +28,17 @@ jobs: run: yarn lint - name: Run tests - run: yarn test \ No newline at end of file + 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