Skip to content

build(deps-dev): bump globals from 17.8.0 to 17.9.0 #2662

build(deps-dev): bump globals from 17.8.0 to 17.9.0

build(deps-dev): bump globals from 17.8.0 to 17.9.0 #2662

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@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Use Node.js
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.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