feat: refactor sdk-snippets to use keys array in webhook response #1628
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: cloudflare-worker | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: packages/cloudflare-worker | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: | |
- 18 | |
- 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm ci --ignore-scripts | |
- run: npm run build | |
- run: npm test | |
# This is being run separately since it's not playing nicely with Node 14. | |
# Once we drop Node 14 support we can probably consolidate this again. | |
lint: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: packages/cloudflare-worker | |
steps: | |
- uses: actions/checkout@v4 | |
- run: npm ci --ignore-scripts | |
- run: npm run lint |