diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index a696f31..f33f8e4 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -16,9 +16,11 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v4 + - name: Install JS dependencies - run: npm install - + run: | + npm cache clean --force + npm install --cpu=arm64 --os=linux - name: Build Gleam to JavaScript run: gleam build --target javascript