Skip to content

chore(deps): update dependency @types/node to v20.17.17 #1209

chore(deps): update dependency @types/node to v20.17.17

chore(deps): update dependency @types/node to v20.17.17 #1209

name: Lint and Build TypeScript projects
on:
pull_request:
paths:
- typescript/**
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}-typescript
cancel-in-progress: true
jobs:
lint-and-build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: typescript
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: "yarn"
cache-dependency-path: typescript/yarn.lock
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint
- name: Build
run: yarn build