diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 163b8b0..ba3f9df 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -41,8 +41,8 @@ jobs: run: npm ci - name: Commit & Push changes run: | - git config user.name github-actions - git config user.email github-actions@github.com + git config --global user.name github-actions + git config --global user.email github-actions@github.com git pull --rebase --autostash git add dist git commit -m "action: build the app" || echo "" diff --git a/src/index.ts b/src/index.ts index f5ef700..2c6cc58 100644 --- a/src/index.ts +++ b/src/index.ts @@ -60,4 +60,6 @@ async function run() { }); } +const a = 42 + run(); \ No newline at end of file