Skip to content

Update dependency wrangler to v4.61.1 (#49) #422

Update dependency wrangler to v4.61.1 (#49)

Update dependency wrangler to v4.61.1 (#49) #422

Workflow file for this run

name: CI
on:
push:
pull_request:
branches: main
jobs:
test:
runs-on: ubuntu-latest
if: ${{ (github.event_name == 'pull_request' && github.event.pull_request.base.repo.id != github.event.pull_request.head.repo.id) || github.event_name == 'push' }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Checkout Code
uses: actions/checkout@0c366fd6a839edf440554fa01a7085ccba70ac98
- name: Setup Node.js
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238
with:
node-version: "24"
cache: "npm"
- name: Install Dependencies
run: npm ci
- name: Lint Code (ESLint)
run: npm run lint
- name: Run Tests
run: npm run test:all