Skip to content

Bump undici from 7.2.0 to 7.2.3 #270

Bump undici from 7.2.0 to 7.2.3

Bump undici from 7.2.0 to 7.2.3 #270

Workflow file for this run

name: Lint
on:
push:
branches:
- master
- LL-v4
pull_request:
jobs:
eslint:
name: eslint
runs-on: ubuntu-latest
steps:
- name: Checkout Project
uses: actions/checkout@v4
- name: Install Node
uses: actions/setup-node@v4
with:
node-version: 20
- name: Restore CI Cache
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-16-${{ hashFiles('**/yarn.lock') }}
- name: Install Dependencies
run: yarn --ignore-scripts
- name: Run ESLint
run: yarn lint