Skip to content

Bump typescript from 5.1.6 to 5.2.2 in /nodejs #493

Bump typescript from 5.1.6 to 5.2.2 in /nodejs

Bump typescript from 5.1.6 to 5.2.2 in /nodejs #493

Workflow file for this run

name: "Continuous Build (NodeJS)"
on:
push:
paths:
- 'nodejs/**'
branches:
- main
pull_request:
paths:
- 'nodejs/**'
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 14
- uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm install
working-directory: nodejs