Make sure to make your pull requests against the main
branch.
The build step transpiles the src/
to dist/
, with ncc
. These files, by
convention, are also checked in.
- Create Conda env with
nodejs
:
We use NodeJS version 20 for now.
conda create -n github-action nodejs=20 -c conda-forge
conda activate github-action
- Install NodeJS dependencies:
npm install
- Ensure the files in
dist
have been rebuilt:
npm run format
npm run check
npm run build
See the release documentation.