Releases: flarum/action-build
Releases · flarum/action-build
4.0.0
v3.0.3
v3.0.2
v3.0.1
Fixed
- Respect
do_not_commit
input. - Show errors/warnings in GitHub annotations.
Full Changelog: 3.0.0...3.0.1
v3.0.0 - One action to run all JS scripts
What's Changed
- feat!: rewrite to node.js-based action. Now runs:
- Prettier formatting check.
- TS Typing check.
- TS Typing Coverage.
- TS Typing Build.
- JS Production Build.
Full Changelog: 2...3.0.0
2.2.0
v2.1.0 - Add support for test building JS
Changed
- Supply the new
do_not_commit
parameter astrue
to not commit the built JS. This is helpful for development branches and PRs.
v2.0.1 - fix error when using Yarn
With 2.0.0 and below and when using Yarn, if actions/setup-node
was run as part of the workflow, yarn would already be installed, causing the installation of Yarn in this action to fail, exiting.
This issue was fixed by disabling exit-on-error when installing yarn via npm.
v2.0.0 - use `with` and add more configuration options
v2.0.0-beta.1 - use `with` and add more configuration options
Add support for building typings, using a different package manager, …