Skip to content

⬆️ Update dependency @types/node to v22.13.2 #1790

⬆️ Update dependency @types/node to v22.13.2

⬆️ Update dependency @types/node to v22.13.2 #1790

Workflow file for this run

name: NodeJS
on:
push:
paths-ignore:
- '.github/workflows/ruby.yml'
- 'ruby/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup
uses: actions/setup-node@v4
with:
node-version: 18
- name: Cache
uses: actions/cache@v4
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- name: Install dependencies
run: |
cd nodejs/express
npm ci
- name: Test
run: |
cd nodejs/express
npm test