Skip to content

build(deps): bump codecov/codecov-action from 6.0.1 to 7.0.0 #860

build(deps): bump codecov/codecov-action from 6.0.1 to 7.0.0

build(deps): bump codecov/codecov-action from 6.0.1 to 7.0.0 #860

Workflow file for this run

name: lint
on: [push, pull_request]
permissions: read-all
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- name: Use Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
cache: npm
node-version-file: .nvmrc
- name: Install dependencies
run: npm ci --prefer-offline
- name: Build package
run: npm run build
- name: Run ESLint
run: npm run lint
- name: Type check
run: npm run lint:tsc
- name: Lint package
run: npm run lint:package
- name: Check types
run: npm run lint:types