-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tgui autobuild is now build validation. adds initial gitlab ci suppor…
…t (#50547) * tgui autobuild is now build validation. adds initial gitlab ci support * Remove autobuild github action Co-authored-by: Aleksej Komarov <[email protected]>
- Loading branch information
1 parent
5f403bb
commit 1f4b2c9
Showing
3 changed files
with
25 additions
and
38 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
build: | ||
stage: build | ||
rules: | ||
- if: $CI_MERGE_REQUEST_IID || $CI_COMMIT_REF_NAME == "master" | ||
changes: | ||
- tgui/**/*.js | ||
- tgui/**/*.scss | ||
when: always | ||
image: node:lts | ||
script: | ||
- tgui/bin/tgui --ci |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters