From 8444ec669f549838e44d58bd927dd4406d5457ee Mon Sep 17 00:00:00 2001 From: AndreiMarin15 Date: Sat, 23 Sep 2023 22:59:37 +0800 Subject: [PATCH] consoleRemove --- .github/workflows/update-notion.js.yml | 34 ++++++++++++++++++++++++++ .gitignore | 1 + scripts/index.js | 5 ++-- 3 files changed, 38 insertions(+), 2 deletions(-) create mode 100644 .github/workflows/update-notion.js.yml diff --git a/.github/workflows/update-notion.js.yml b/.github/workflows/update-notion.js.yml new file mode 100644 index 0000000..737cdde --- /dev/null +++ b/.github/workflows/update-notion.js.yml @@ -0,0 +1,34 @@ +name: Notion Update CI + +on: + push: + branches: ["development", "main", "feature/notion-db-automation"] + +jobs: + build: + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [16.x, 18.x] + # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ + defaults: + run: + working-directory: ./scripts + steps: + - uses: actions/checkout@v3 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.node-version }} + cache: "npm" + + - run: npm ci + - run: | + touch .env.local + echo NOTION_INTEGRATION_SECRET=${{ secrets.NOTION_INTEGRATION_SECRET }} >> .env.local + echo NOTION_LEADS_DEVDB=${{ secrets.NOTION_LEADS_DEVDB }} >> .env.local + echo NOTION_LEADS_PRODDB=${{ secrets.NOTION_LEADS_PRODDB }} >> .env.local + + - run: npm run build --if-present + - run: npm run start diff --git a/.gitignore b/.gitignore index 1437c53..207a50b 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,7 @@ /node_modules /.pnp .pnp.js +scripts/node_modules # testing /coverage diff --git a/scripts/index.js b/scripts/index.js index 10e4106..b5018f8 100644 --- a/scripts/index.js +++ b/scripts/index.js @@ -78,10 +78,11 @@ async function queryDb(databaseId) { database_id: databaseId, }); - console.log(response.results[response.results.length-1].properties.Avatar.files[0].name) + // console.log(response.results[response.results.length-1].properties.Avatar.files[0].name) return response; } - +console.log(process.env.NOTION_LEADS_PRODDB) +console.log(process.env.NOTION_LEADS_DEVDB) deleteRecords(process.env.NOTION_LEADS_PRODDB); // queryDb(`bbbd878ff5f6489c8c39e6f54166d31e`)