Skip to content

Bump the minor-production-deps group across 1 directory with 9 updates #522

Bump the minor-production-deps group across 1 directory with 9 updates

Bump the minor-production-deps group across 1 directory with 9 updates #522

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.node-version'
cache: npm
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Type check
run: npm run type-check