Skip to content

Add readme + contributing docs #4

Add readme + contributing docs

Add readme + contributing docs #4

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
workflow_dispatch:
jobs:
deploy:
timeout-minutes: 5
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Git Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup Node.js
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
with:
node-version-file: worker/.nvmrc
cache-dependency-path: worker/package-lock.json
cache: npm
- name: Install Dependencies
working-directory: worker
run: npm ci
- name: Deploy Worker
uses: cloudflare/wrangler-action@da0e0dfe58b7a431659754fdf3f186c529afbe65 # v3.14.1
with:
workingDirectory: worker
apiToken: ${{ secrets.CF_API_TOKEN }}