chore(deps): bump fast-xml-parser from 4.2.5 to 4.2.6; run [dynamicxml eclipse jetbrains maven nuget] #7644
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: | |
pull_request: | |
types: [opened, reopened, synchronize] | |
push: | |
branches-ignore: | |
- 'gh-pages' | |
- 'dependabot/**' | |
jobs: | |
test-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup | |
uses: ./.github/actions/setup | |
with: | |
node-version: 16 | |
- name: ESLint | |
if: always() | |
run: npm run lint | |
- name: 'Prettier check (quick fix: `npm run prettier`)' | |
if: always() | |
run: npm run prettier:check |