Merge pull request #5 from element-hq/af/workflow-fixes

* Fix synapse guest module releases
* Make other miscellaneous workflow fixes/improvements
This commit is contained in:
Andrew Ferrazzutti
2025-02-18 11:08:09 -05:00
committed by GitHub
2 changed files with 2 additions and 3 deletions
+1 -1
View File
@@ -8,7 +8,7 @@
], ],
"scripts": { "scripts": {
"prepare": "vite build", "prepare": "vite build",
"lint:ts": "tsc --noEmit", "lint": "tsc --noEmit",
"test": "echo no tests yet" "test": "echo no tests yet"
}, },
"devDependencies": { "devDependencies": {
@@ -11,8 +11,7 @@
"build": "echo \"Nothing to build\"", "build": "echo \"Nothing to build\"",
"docker:build": "docker build -t element-hq/synapse-guest-module -f Dockerfile .", "docker:build": "docker build -t element-hq/synapse-guest-module -f Dockerfile .",
"tsc": "echo \"Nothing to tsc\"", "tsc": "echo \"Nothing to tsc\"",
"lint": "echo \"Nothing to lint\"", "lint": "yarn types:py && yarn lint:py",
"lint:ts": "echo \"Nothing to lint:ts\"",
"types:py": "./scripts/run_in_venv.sh tox -e check_types", "types:py": "./scripts/run_in_venv.sh tox -e check_types",
"lint:py": "./scripts/run_in_venv.sh tox -e check_codestyle", "lint:py": "./scripts/run_in_venv.sh tox -e check_codestyle",
"lint:fix": "./scripts/run_in_venv.sh tox -e fix_codestyle", "lint:fix": "./scripts/run_in_venv.sh tox -e fix_codestyle",