Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 527 Bytes

CONTRIBUTING.md

File metadata and controls

30 lines (23 loc) · 527 Bytes

Contributing

Contributions are welcome.

Layout

root
├── action.yaml
└── action-src
    ├── package.json
    ├── node_modules
    └── src
        └── *.ts
└── action
    ├── package.json
    ├── node_modules
    └── lib
        └── *.js

action is the compiled code used to run the action. The entire folder is in the source tree. action-src is the source code for the action.

Testing

GITHUB_TOKEN=$(gh auth token) pnpm test