Skip to content

build(deps-dev): bump @types/node from 24.9.0 to 24.9.1 in the npm-development group [skip ci] #591

build(deps-dev): bump @types/node from 24.9.0 to 24.9.1 in the npm-development group [skip ci]

build(deps-dev): bump @types/node from 24.9.0 to 24.9.1 in the npm-development group [skip ci] #591

Workflow file for this run

name: Continuous Integration
on:
pull_request:
branches:
- develop
push:
branches:
- develop
permissions:
contents: read
jobs:
test-typescript:
name: TypeScript Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version-file: .nvmrc
cache: npm
- name: Init npmrc
run: |
curl -H "X-JFrog-Art-API: ${{ secrets.ARTIFACTORY_API_KEY }}" https://linearb.jfrog.io/linearb/api/npm/npm-local/auth/linearb >> .npmrc
- name: Install Dependencies
run: npm ci
- name: Check Format
run: npm run format:check
- name: Lint
run: npm run lint
- name: Test
run: npm run test