Skip to content

[PM-4161] Fix build command on README.md (#207) #890

[PM-4161] Fix build command on README.md (#207)

[PM-4161] Fix build command on README.md (#207) #890

Workflow file for this run

---
name: Lint
on:
push:
paths-ignore:
- ".github/workflows/**"
workflow_dispatch:
inputs: {}
defaults:
run:
shell: bash
jobs:
lint:
name: Lint
runs-on: ubuntu-22.04
steps:
- name: Checkout repo
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
- name: Set up Node
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1
with:
cache: "npm"
cache-dependency-path: "**/package-lock.json"
node-version: "18"
- name: Run linter and spellcheck
run: |
npm ci
npm run lint
npm run spellcheck