diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml index 8bcbced..0a98937 100644 --- a/.github/workflows/CICD.yml +++ b/.github/workflows/CICD.yml @@ -20,6 +20,8 @@ jobs: # needs: Tests # runs-on: ubuntu-latest # name: Deploy project + + # SPECIFY BRANCHES FOR DEPLOY HERE # if: github.ref == 'refs/heads/main' # steps: # - uses: actions/checkout@v3 diff --git a/src/index.ts b/src/index.ts index 149739c..f269fc0 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,7 +1,3 @@ export function main(a: number) { - console.log(a); - - console.log(1); - return a * 2; }