Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 498 Bytes

development.md

File metadata and controls

26 lines (18 loc) · 498 Bytes

Development documentation

To get started, install the project's dependencies:

pnpm install

Run unit tests with:

pnpm test

Before committing, make sure you don't have any lint errors and the projects builds successfully:

pnpm lint
pnpm build

To test the action as part of a workflow, you can run the .github/workflows/example.yml workflow locally with act:

act workflow_dispatch -W '.github\workflows\example.yml'