build(deps-dev): bump eslint-plugin-simple-import-sort from 12.1.0 to 12.1.1 in the dependencies group #501
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: test | |
on: | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.1.7 | |
- name: Use Node.js | |
uses: actions/setup-node@v4.0.2 | |
with: | |
node-version: '22.x' | |
cache: 'npm' | |
- name: Install NPM dependencies | |
run: npm ci | |
- name: NPM Build | |
run: npm run build | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.1.7 | |
- name: Use Node.js | |
uses: actions/setup-node@v4.0.2 | |
with: | |
node-version: '22.x' | |
cache: 'npm' | |
- name: Install NPM dependencies | |
run: npm ci | |
- name: Lint | |
run: npm run lint -- --no-fix |