Make sure to make your pull requests against the develop
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 16 for now.
conda create -n github-action nodejs=16 -c conda-forge
conda activate
- 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.