Skip to content

Bump the docker group across 1 directory with 5 updates #442

Bump the docker group across 1 directory with 5 updates

Bump the docker group across 1 directory with 5 updates #442

Workflow file for this run

name: lint
on: pull_request
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
cache: npm
cache-dependency-path: simple-examples/package.json
- name: Simple – Install dependencies
working-directory: simple-examples
run: npm ci
- name: Simple – Build
working-directory: simple-examples
run: npm run lint:check
- name: Child Workflows – Install dependencies
working-directory: child-workflows
run: npm ci
- name: Child Workflows – Build
working-directory: child-workflows
run: npm run lint:check