Skip to content

Add in-code docs on awakeable payload serialization and deserialization #86

Add in-code docs on awakeable payload serialization and deserialization

Add in-code docs on awakeable payload serialization and deserialization #86

Workflow file for this run

name: Build and test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
# prevent from running on forks
if: github.repository_owner == 'restatedev'
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [19.x]
steps:
- uses: actions/checkout@v3
- uses: bufbuild/buf-setup-action@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run proto
- run: npm run verify
- run: mv $(npm pack) restatedev-restate-sdk.tgz
- uses: actions/upload-artifact@v3
with:
name: restatedev-restate-sdk
path: restatedev-restate-sdk.tgz
retention-days: 1
if-no-files-found: error
e2e:
permissions:
contents: read
issues: read
checks: write
pull-requests: write
actions: read
secrets: inherit
needs: build
uses: restatedev/e2e/.github/workflows/e2e.yaml@main
with:
sdkTypescriptCommit: ${{ github.event.pull_request.head.sha || github.sha }}
e2eRef: main