Skip to content

chore(deps): bump rexml from 3.2.5 to 3.2.8 in /packages/ruby #1367

chore(deps): bump rexml from 3.2.5 to 3.2.8 in /packages/ruby

chore(deps): bump rexml from 3.2.5 to 3.2.8 in /packages/ruby #1367

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@v3
- uses: actions/setup-node@v3
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@v3
- run: npm ci --ignore-scripts
- run: npm run lint