💚 Modification de l'artefact #15
This file contains hidden or 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
name: CI | |
on: | |
push: | |
branches: [main, develop] | |
pull_request: | |
branches: [main, develop] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20.x" | |
cache: "npm" | |
- name: Install dependencies | |
run: npm ci | |
- name: Run TypeScript compilation check | |
run: npm run build | |
- name: Run ESLint | |
run: npm run lint | |
- name: Check for TypeScript errors | |
run: npx tsc --noEmit | |
- name: Verify build output | |
run: | | |
if [ ! -d "dist" ]; then | |
echo "❌ Build directory 'dist' not found" | |
exit 1 | |
fi | |
if [ ! -f "dist/manifest.json" ]; then | |
echo "❌ manifest.json not found in dist directory" | |
exit 1 | |
fi | |
if [ ! -f "dist/content.js" ]; then | |
echo "❌ content.js not found in dist directory" | |
exit 1 | |
fi | |
if [ ! -f "dist/options.js" ]; then | |
echo "❌ options.js not found in dist directory" | |
exit 1 | |
fi | |
if [ ! -f "dist/popup.js" ]; then | |
echo "❌ popup.js not found in dist directory" | |
exit 1 | |
fi | |
echo "✅ All build files present" | |
# Vérifier que les fichiers JS ne sont pas vides | |
for file in dist/*.js; do | |
if [ ! -s "$file" ]; then | |
echo "❌ $file is empty" | |
exit 1 | |
fi | |
done | |
echo "✅ All JavaScript files have content" | |
- name: Create test ZIP | |
run: | | |
# Créer un ZIP de test | |
cd dist | |
zip -r "../myhover-translator-test.zip" . -x "*.DS_Store" "*/.*" | |
cd .. | |
echo "✅ ZIP de test créé: myhover-translator-test.zip" | |
- name: Upload build artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: extension-build | |
path: | | |
dist/ | |
myhover-translator-test.zip | |
retention-days: 7 |