Skip to content

chore(deps): update all non-major dependencies #1317

chore(deps): update all non-major dependencies

chore(deps): update all non-major dependencies #1317

Workflow file for this run

name: Node.js Lint CI
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@a4aa98b93cab29d9b1101a6143fb8bce00e2eac4 # v2.7.1
with:
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
- name: Setup Node.js
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
- name: Install dependencies
run: npm install
- name: Build TypeScript project
run: npm run build --if-present
- name: Lint
run: npm run check