Skip to content
This repository was archived by the owner on Sep 27, 2025. It is now read-only.

Bump wrangler from 4.30.0 to 4.38.0 #506

Bump wrangler from 4.30.0 to 4.38.0

Bump wrangler from 4.30.0 to 4.38.0 #506

Workflow file for this run

name: Unit Test
on:
push:
branches: [main]
pull_request:
branches: [main]
types: [opened, synchronize, reopened, labeled]
workflow_dispatch:
jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Install dependencies
run: npm ci
- name: Setup .env
run: cp .env.example .env
- name: Run tests
run: npm test