Skip to content

Bump nodemon from 3.1.4 to 3.1.5 in /checkout-example #18

Bump nodemon from 3.1.4 to 3.1.5 in /checkout-example

Bump nodemon from 3.1.4 to 3.1.5 in /checkout-example #18

Workflow file for this run

name: Build Checkout
on:
workflow_dispatch:
push:
branches: [ main ]
paths:
- 'checkout-example/**'
pull_request:
branches: [ main ]
paths:
- 'checkout-example/**'
jobs:
build-checkout:
runs-on: ubuntu-latest
defaults:
run:
working-directory: 'checkout-example'
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: 'checkout-example'
- name: Build checkout-example
run: npm install