Bump the all group across 1 directory with 93 updates #319
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
# Installs Node.js dependencies and pnpm, and checks formatting + linting | |
name: Lint Node.js | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
paths-ignore: | |
- "src-tauri/**" | |
- "README.md" | |
jobs: | |
build: | |
strategy: | |
fail-fast: true | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Disable git core.autocrlf on Windows | |
if: matrix.os == 'windows-latest' | |
run: git config --global core.autocrlf false | |
- name: Checkout repository code | |
uses: actions/checkout@v4 | |
- name: Set up pnpm package manager | |
uses: pnpm/action-setup@v4 | |
with: | |
version: latest | |
- name: Set up Node.js v22 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 22 | |
cache: "pnpm" | |
- name: Install dependencies from lockfile | |
run: pnpm install --frozen-lockfile | |
- name: Run lint step | |
run: pnpm lint |