Skip to content

chore(deps): bump undici from 5.25.4 to 5.26.3 #181

chore(deps): bump undici from 5.25.4 to 5.26.3

chore(deps): bump undici from 5.25.4 to 5.26.3 #181

Workflow file for this run

name: Static analysis - Check format and run linter
on:
push:
paths:
- src/**
pull_request:
types:
- opened
- synchronize
jobs:
format:
runs-on: ubuntu-latest
# Exclude in-repo PRs from running this job
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.fork
steps:
- name: Clone repository
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
- name: Setup Node.js 16
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3
with:
node-version: 16.x
cache: npm
- name: Install npm development dependencies
run: npm install
- name: Check format
run: npm run format-check
- name: Run ESLint
run: npm run lint