Skip to content

ci: run wrangler directly #3

ci: run wrangler directly

ci: run wrangler directly #3

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
permissions:
contents: read
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v3
with:
node-version: "20"
cache: "pnpm"
- name: Install dependencies
run: pnpm i
- name: Check types
run: pnpm nuxt typecheck
- name: Lint code
run: pnpm eslint .
- name: Check code formatting
run: pnpm prettier -c .
- name: Build
run: pnpm build
- name: Deploy
run: pnpm wrangler pages deploy --project-name=luonto .output/public
env:
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CF_ACCOUNT_ID }}
CLOUDFLARE_API_TOKEN: ${{ secrets.CF_API_TOKEN }}