chore(deps): update autofix-ci/action digest to d3e5915 #112
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
name: cloudflare | |
on: | |
push: | |
branches: | |
- main | |
- cloudflare | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: corepack enable | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: pnpm | |
- run: pnpm install | |
- run: pnpm build | |
env: | |
NITRO_PRESET: cloudflare | |
- uses: cloudflare/[email protected] | |
with: | |
apiToken: ${{ secrets.CF_API_TOKEN }} | |
- name: Test deployed site | |
run: pnpm test:deployment | |
env: | |
DEPLOYMENT_URL: https://nitro-deployment.pi0.workers.dev/ |