Skip to content

chore(deps): update dependency cloudevents to v10 (#702) #4224

chore(deps): update dependency cloudevents to v10 (#702)

chore(deps): update dependency cloudevents to v10 (#702) #4224

Workflow file for this run

name: Node.js Conformance CI
on:
push:
branches:
- main
pull_request:
# Declare default permissions as read only.
permissions: read-all
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20, 22]
steps:
- name: Harden Runner
uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
with:
disable-sudo: true
egress-policy: block
allowed-endpoints: >
api.github.com:443
github.com:443
objects.githubusercontent.com:443
proxy.golang.org:443
registry.npmjs.org:443
release-assets.githubusercontent.com:443
storage.googleapis.com:443
sum.golang.org:443
- name: Checkout code
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
with:
node-version: ${{ matrix.node-version }}
- name: Build Functions Framework
run: npm ci
- name: Build test project
working-directory: ./test/conformance
run: npm install
- name: Install conformance client
uses: GoogleCloudPlatform/functions-framework-conformance/.github/actions/client/install@c7b9c8798fb35e454f76da185a40547ee55c784e # v1.8.7
with:
client-version: v1.8.3
cache-path: ~/client
cache-key: conformance-client-v1.8.3
- name: Run HTTP conformance tests using legacy API
working-directory: 'test/conformance'
run: |
~/client \
-type=http \
-buildpacks=false \
-cmd="npm start -- --target=writeHttp --signature-type=http"
- name: Run event conformance tests using legacy API
working-directory: 'test/conformance'
run: |
~/client \
-type=legacyevent \
-buildpacks=false \
-cmd="npm start -- --target=writeLegacyEvent --signature-type=event"
- name: Run cloudevent conformance tests using legacy API
working-directory: 'test/conformance'
run: |
~/client \
-type=cloudevent \
-buildpacks=false \
-cmd="npm start -- --target=writeCloudEvent --signature-type=cloudevent"
- name: Run HTTP conformance tests using declarative API
working-directory: 'test/conformance'
run: |
~/client \
-type=http \
-buildpacks=false \
-validate-mapping=false \
-cmd="npm start -- --target=writeHttpDeclarative"
- name: Run cloudevent conformance tests using declarative API
working-directory: 'test/conformance'
run: |
~/client \
-type=cloudevent \
-buildpacks=false \
-validate-mapping=true \
-cmd="npm start -- --target=writeCloudEventDeclarative"
- name: Run HTTP concurrency test
working-directory: 'test/conformance'
run: |
~/client \
-type=http \
-buildpacks=false \
-validate-concurrency=true \
-cmd="npm start -- --target=concurrentHttp"