Skip to content

optimistic updates

optimistic updates #18

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 18
cache: "npm"
- run: npm ci
- run: npx partykit deploy
env:
PARTYKIT_TOKEN: ${{ secrets.PARTYKIT_TOKEN }}
PARTYKIT_LOGIN: ${{ secrets.PARTYKIT_LOGIN }}