This repository has been archived by the owner on Dec 11, 2024. It is now read-only.
fix(deps): update dependency globby to v14.0.2 #8401
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint | |
on: [push, pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4.1.7 | |
- uses: actions/setup-node@v4.0.2 | |
with: | |
node-version: '18' | |
cache: 'npm' | |
- name: Install npm@9 | |
run: npm i -g npm@9 | |
- name: Install | |
run: npm ci --prefer-offline | |
- name: Alex | |
run: npm run alex | |
- name: Prettier | |
run: npm run prettier -- --list-different | |
- name: Eslint | |
run: npm run eslint -- --max-warnings 0 |