diff --git a/.github/workflows/deploy-firebase.yml b/.github/workflows/deploy-firebase.yml index 1cefe6d8..6c2005f0 100644 --- a/.github/workflows/deploy-firebase.yml +++ b/.github/workflows/deploy-firebase.yml @@ -18,13 +18,19 @@ jobs: - name: Checkout the source code uses: actions/checkout@v4 - - uses: pnpm/action-setup@v3 + - name: Install pnpm + uses: pnpm/action-setup@v3 with: version: 8 - - name: Install dependencies + - name: Install npm dependencies run: pnpm install + - name: Install wasm-pack + uses: jetli/wasm-pack-action@v0.4.0 + with: + version: 'latest' + - name: Build static site run: pnpm build