diff --git a/.cspell.json b/.cspell.json index 40e1508..9a1d0cf 100644 --- a/.cspell.json +++ b/.cspell.json @@ -1,7 +1,16 @@ { "$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json", "version": "0.2", - "ignorePaths": ["**/*.json", "**/*.css", "node_modules", "**/*.log", "./src/adapters/supabase/**/**.ts", "./src/types/database.ts", "./supabase/config.toml"], + "ignorePaths": [ + "**/*.json", + "**/*.css", + "node_modules", + "**/*.log", + "./src/adapters/supabase/**/**.ts", + "./src/types/database.ts", + "./supabase/config.toml", + "dist/**" + ], "useGitignore": true, "language": "en", "words": [ diff --git a/.github/workflows/compute.yml b/.github/workflows/compute.yml index d91ce00..9e66f12 100644 --- a/.github/workflows/compute.yml +++ b/.github/workflows/compute.yml @@ -35,7 +35,7 @@ jobs: node-version: "20.10.0" - name: Execute plugin - run: node dist/main.js + run: node dist/index.js env: PLUGIN_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} SUPABASE_URL: ${{ secrets.SUPABASE_URL }} diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 0000000..3b8b602 --- /dev/null +++ b/.prettierignore @@ -0,0 +1,2 @@ +dist/ +coverage/ \ No newline at end of file