@ihalton/ci-scripts
v1.6.2
Published
Scripts supporting our Continuous Integration (CI)
Maintainers
Readme
Reaction Commerce CI Scripts
Scripts we use across many repositories during continuous integration.
How to use in circleci
In your .circleci/config.yml, in your appropriate job step, add a run command:
jobs:
lint:
<<: *defaults
steps:
- checkout
- run:
name: Run Lint Suite
# pin the current latest version explicitly, 2.0.0 for example only
command: npx --quiet --package @reactioncommerce/[email protected] lint-shell-scriptsHow to add new scripts
- Put your script file in the repo root. Use a filename extension. It makes editor syntax highlighting and linting "just work" sometimes.
chmod 755 your-script.sh- Add an entry to the
package.json"bin"property mapping"name-without-extension": "./name-with-extension.sh", - Commit with semantic release
feat:message
Implementation Notes
- Scripts should operate on their current working directory (inherited from the parent process)
- Meaning the calling code should
cdinto the root of their project git repository (which happens by default on circleci) then invoke the scripts from this repo
- Meaning the calling code should
- Scripts should enumerate files with
git ls-files - Shell scripts should be formatted with shfmt
