Skip to content

Commit c102ed4

Browse files
authored
Merge pull request #15 from SentienceAPI/fix_release2
fix release sync
2 parents bbb049d + 8fa2d87 commit c102ed4

3 files changed

Lines changed: 10 additions & 0 deletions

File tree

.github/workflows/sync-extension.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,11 @@ jobs:
198198
fi
199199
echo "✅ All required WASM files verified"
200200
201+
# Clean up temporary directory
202+
cd ..
203+
rm -rf extension-temp
204+
echo "🧹 Cleaned up extension-temp directory"
205+
201206
- name: Check for changes
202207
if: steps.release.outputs.skip != 'true'
203208
id: changes

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,6 @@ Thumbs.db
4141
snapshot_*.json
4242
*.test.js.map
4343

44+
# Temporary directories from sync workflows
45+
extension-temp/
46+

jest.config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,7 @@ module.exports = {
2323
},
2424
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json'],
2525
setupFilesAfterEnv: ['<rootDir>/tests/setup.ts'],
26+
// Ignore temporary directories from sync workflows
27+
modulePathIgnorePatterns: ['<rootDir>/extension-temp', '<rootDir>/.github'],
2628
};
2729

0 commit comments

Comments
 (0)