Skip to content

chore(deps-dev): bump @types/node from 20.7.0 to 20.10.3 in /transaction-analyzer/node-typescript #578

chore(deps-dev): bump @types/node from 20.7.0 to 20.10.3 in /transaction-analyzer/node-typescript

chore(deps-dev): bump @types/node from 20.7.0 to 20.10.3 in /transaction-analyzer/node-typescript #578

# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: node-typescript
on:
push:
paths:
- "transaction-analyzer/node-typescript/**"
branches: [ master ]
pull_request:
paths:
- "transaction-analyzer/node-typescript/**"
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
#strategy:
# matrix:
# node-version: [14.x, 16.x]
# # See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v4
- name: Use Node.js 19
uses: actions/setup-node@v3
with:
node-version: "19"
- uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Build
run: |
cd transaction-analyzer/node-typescript
npm install --registry=https://registry.npmjs.org
npm ci
npm run build --if-present
npm test