Skip to content
This repository has been archived by the owner on Jul 20, 2024. It is now read-only.

fix: 🩹 typo fixed in test #24

fix: 🩹 typo fixed in test

fix: 🩹 typo fixed in test #24

Workflow file for this run

name: Deploy to Cloudflare Workers 🚀
on:
push:
branches:
- main
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
deploy:
runs-on: ubuntu-latest
name: Deploy
steps:
- name: Checkout 🧳
uses: actions/checkout@v4
- name: Install Node.js 🔥
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install pnpm 👀
uses: pnpm/action-setup@v2
id: pnpm-install
with:
version: 8
run_install: false
- name: Get pnpm store directory 🏪
id: pnpm-cache
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- name: Setup pnpm cache 💰
uses: actions/cache@v4
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies ⏬
run: pnpm install
- name: Run tests 🧪
run: pnpm test:coverage
# Deploy
- name: Deploy 🚀
run: yarn deploy
env:
CLOUDFLARE_API_TOKEN: ${{ secrets.CF_API_TOKEN }}
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CF_ACCOUNT_ID }}