Skip to content

Build: Bump basic-ftp from 5.0.5 to 5.2.0 (#10093) #29

Build: Bump basic-ftp from 5.0.5 to 5.2.0 (#10093)

Build: Bump basic-ftp from 5.0.5 to 5.2.0 (#10093) #29

Workflow file for this run

name: JavaScript Linting
on:
push:
branches-ignore:
- "dependabot/**"
paths:
- "package*.json"
- "Gruntfile.coffee"
- "**/*.js"
- "**/*.mjs"
- ".github/workflows/lint-js.yml"
- "!lib/"
- "!src/core/dep/modernizr-custom.js"
- "!src/polyfills/events/mobile.js"
- "!src/polyfills/slider/slider.js"
pull_request:
paths:
- "package*.json"
- "Gruntfile.coffee"
- "**/*.js"
- "**/*.mjs"
- ".github/workflows/lint-js.yml"
- "!lib/"
- "!src/core/dep/modernizr-custom.js"
- "!src/polyfills/events/mobile.js"
- "!src/polyfills/slider/slider.js"
jobs:
lint-js:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v6
# setup-node task is used without a particular version in order to load
# the ESLint problem matchers
- name: Set up Node.js
uses: actions/setup-node@v6
with:
cache: npm
- name: Install Grunt
run: npm i -g grunt-cli --force
- name: Install npm dependencies
run: npm ci --ignore-scripts
- name: ESLint
run: grunt eslint