You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+28Lines changed: 28 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -111,6 +111,34 @@ steps:
111
111
| Specific version (e.g. `120.0.6099`) | ✅ | ✅ | ✅ | ✅ | ❌ |
112
112
| Latest snapshot | ✅ | ✅ | ✅ | ✅ | ✅ |
113
113
114
+
## Contributing
115
+
116
+
### Local development
117
+
118
+
```bash
119
+
# Instal dependencies
120
+
pnpm install
121
+
122
+
# Run tests
123
+
pnpm lint
124
+
pnpm test
125
+
126
+
# Build and create package in dist/
127
+
pnpm build
128
+
pnpm package
129
+
```
130
+
131
+
## Release
132
+
133
+
Releases are automated with Release Please. All changes must follow [Conventional Commits][], since Release Please derives versions and changelog entries from commit messages.
134
+
135
+
1. Merge some changes to the main branch.
136
+
2. Release Please opens or updates a release PR with version bumps and changelog updates.
137
+
3. Squash and merge the release PR to the main branch with a commit message that follows [Conventional Commits][].
138
+
4. Create a GitHub release and publish the action to the marketplace.
0 commit comments