Skip to content

Error handling

Error handling #130

Workflow file for this run

# Installs Node.js dependencies and pnpm, and checks formatting + linting
name: Lint Node.js
on:
pull_request:
paths-ignore:
- ".github/workflows/**"
- "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@v3
- name: Set up pnpm package manager
uses: pnpm/action-setup@v2
with:
version: latest
- name: Set up Node.js LTS v16
uses: actions/setup-node@v3
with:
node-version: 16
cache: "pnpm"
- name: Install dependencies from lockfile
run: pnpm install --frozen-lockfile
- name: Run lint step
run: pnpm lint