Skip to content

Bump undici in the npm_and_yarn group across 1 directory (#77) #762

Bump undici in the npm_and_yarn group across 1 directory (#77)

Bump undici in the npm_and_yarn group across 1 directory (#77) #762

Workflow file for this run

name: CI
permissions:
contents: read
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@53b83947a5a98c8d113130e565377fae1a50d02f
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