Skip to content

Add support for setting user, workingDir and env when executing a command in a container #695

Add support for setting user, workingDir and env when executing a command in a container

Add support for setting user, workingDir and env when executing a command in a container #695

Workflow file for this run

name: Lint
on:
pull_request:
branches: [ main ]
jobs:
lint:
runs-on: ubuntu-22.04
steps:
- name: Code checkout
uses: actions/checkout@v3
- name: Install NodeJS
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install dependencies
run: npm ci --omit=optional
- name: Code linting
run: npm run lint:ci