chore: remove unused imports #47
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
jobs: | |
deploy: | |
name: "Deploy KAPLAYGROUND on Cloudflare Workers" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Setup PNPM | |
uses: pnpm/action-setup@v4 | |
- name: Deploy app | |
uses: cloudflare/wrangler-action@v3 | |
with: | |
packageManager: pnpm | |
apiToken: ${{ secrets.CLOUDFLARE_WORKERS_KEY }} | |
command: pages deploy dist --project-name=kaplay | |
preCommands: "pnpm i && pnpm build" |