summaryrefslogtreecommitdiffstats
path: root/.github/workflows/pull-e2e-tests.yml
Commit message (Collapse)AuthorAgeFilesLines
* feat: bump `dessant/lock-threads` and `actions/setup-go` to use nodejs20 ↵Rui Chen2023-12-211-1/+1
| | | | | | | | | | | | | | runtime (#28565) Update more actions to use nodejs20 runtime and also update the docs for checkout action usage. similar to: - #27836 - #27096 --------- Signed-off-by: Rui Chen <rui@chenrui.dev>
* Bump workflows in github actions (#27836)Chongyi Zheng2023-10-301-1/+1
| | | | All major version upgrades are related to using Node v20 as default runtime
* actions/setup-go use go-version-file (#27651)Yevhen Pavlov2023-10-171-1/+1
| | | | These changes will allow not to specify the version of go in every pipeline.
* Upgrading the actions/checkout@4 (#27096)puni98692023-09-161-1/+1
| | | | | | | as title ..Upgrading the actions/checkout@4 Signed-off-by: puni9869 <punitinani1@hotmail.com> Co-authored-by: silverwind <me@silverwind.io>
* Lock go to 1.21 on CI (#26433)silverwind2023-08-101-1/+1
| | | | | | | To prevent unwanted surprises with new minor versions of go, lock the version to minor version using [semver tilde syntax](https://github.com/npm/node-semver#tilde-ranges-123-12-1). We were already getting 1.21.0 since yesterday, so use that version now as minimum.
* GitHub Actions enhancements for frontend (#25150)silverwind2023-06-141-1/+1
| | | | | - Don't run DB tests for frontend-only changes - Build frontend as part of frontend step - Build everything when actions change
* Use file filters action instead of Github's files filter (#24877)Lunny Xiao2023-05-251-3/+5
| | | | | | | | | | | | | | | Inspired by https://github.com/go-gitea/gitea/pull/24530#issuecomment-1558815301 This PR use a file filter action to do different CI jobs according changed files types. All types are defined in `.github/file-filters.yml`. Now there are 4 types, `docs`, `backend`, `frontend` and `build`. Then if a PR only changed docs files, those CI jobs which passed the conditions will run, and other types are also like this. --------- Co-authored-by: silverwind <me@silverwind.io>
* Don't run build and test if only docs changed (#24530)Lunny Xiao2023-05-161-1/+5
| | | Co-authored-by: techknowlogick <techknowlogick@gitea.io>
* GitHub Actions cleanups (#24620)silverwind2023-05-111-0/+26
- Remove actions name where command is descriptive enough - Use kebab-case instead of snake-case for step names - Use shorter job names because to make PR checks more readable - Remove duplicate `checks-backend` --------- Co-authored-by: Yarden Shoham <git@yardenshoham.com>