Skip to content

Merge pull request #39 from forrest-runner/dependabot/npm_and_yarn/np… #159

Merge pull request #39 from forrest-runner/dependabot/npm_and_yarn/np…

Merge pull request #39 from forrest-runner/dependabot/npm_and_yarn/np… #159

Workflow file for this run

name: Check
on: [pull_request, push]
permissions:
contents: read
jobs:
format-and-lint:
name: Format and Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v5
- name: Setup Node.js
id: setup-node
uses: actions/setup-node@v6
with:
node-version-file: .node-version
cache: npm
- name: Install Dependencies
id: npm-ci
run: npm ci
- name: Check Format
id: npm-format-check
run: npm run format:check
- name: Lint
id: npm-lint
run: npm run lint