diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 485edd1b..3df9389f 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -51,8 +51,6 @@ jobs: frontend/dist/spa fleek.config.ts node_modules - !node_modules/**/*.json - tests: runs-on: ubuntu-latest steps: @@ -179,5 +177,7 @@ jobs: cache: false - name: Look at directory run: ls -la + - name: Install Fleek CLI + run: volta run yarn global add @fleekxyz/cli - name: Build & deploy sites run: volta run fleek sites deploy diff --git a/fleek.config.ts b/fleek.config.js similarity index 63% rename from fleek.config.ts rename to fleek.config.js index 7343e449..f4c27de5 100644 --- a/fleek.config.ts +++ b/fleek.config.js @@ -1,5 +1,3 @@ -import { FleekConfig } from '@fleekxyz/cli'; - export default { "sites": [ { @@ -7,4 +5,4 @@ export default { "distDir": "./frontend/dist/spa" } ] -} satisfies FleekConfig; +};