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: .github/workflows/ci.yml
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -34,6 +34,7 @@ jobs:
34
34
uses: conda-incubator/setup-miniconda@v2.2.0
35
35
with:
36
36
environment-file: environment-dev.yml
37
+
activate-environment: galaxy
37
38
use-only-tar-bz2: true
38
39
- name: Set up NodeJS environment
39
40
uses: actions/setup-node@v3
@@ -65,8 +66,7 @@ jobs:
65
66
working-directory: ./frontend
66
67
- name: Verify generated types are up-to-date
67
68
run: |
68
-
# Activate conda environment and run the type generation script
69
-
conda activate galaxy
69
+
# Run the type generation script (conda environment 'galaxy' is already activated)
70
70
./generate_types.sh
71
71
# Check if any files were modified
72
72
git diff --exit-code src/api/_autogen/ || (echo "ERROR: Generated TypeScript types are out of date. Please run ./generate_types.sh and commit the changes." && exit 1)
0 commit comments