Skip to content

Bump wrangler from 3.81.0 to 3.83.0 #28

Bump wrangler from 3.81.0 to 3.83.0

Bump wrangler from 3.81.0 to 3.83.0 #28

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