Skip to content

build(deps-dev): bump handlebars from 4.7.8 to 4.7.9 in /nodejs #1204

build(deps-dev): bump handlebars from 4.7.8 to 4.7.9 in /nodejs

build(deps-dev): bump handlebars from 4.7.8 to 4.7.9 in /nodejs #1204

Workflow file for this run

name: "Continuous Build (NodeJS)"
on:
push:
paths:
- 'nodejs/**'
- '.github/workflows/ci-nodejs.yml'
branches:
- main
pull_request:
paths:
- 'nodejs/**'
- '.github/workflows/ci-nodejs.yml'
branches:
- main
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: 18
- uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm ci
working-directory: nodejs
- run: npm run lint
working-directory: nodejs
- run: npm test
working-directory: nodejs
- name: Build AWS SDK Sample
run: npm run build
working-directory: nodejs/sample-apps/aws-sdk