-
Notifications
You must be signed in to change notification settings - Fork 0
102 lines (83 loc) · 2.47 KB
/
Copy pathdev.yml
File metadata and controls
102 lines (83 loc) · 2.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
name: 🛠️ Development Workflow
on:
push:
branches: [develop, feature/*]
pull_request:
branches: [develop]
env:
NODE_VERSION: 18.x
jobs:
# Fast feedback loop for development
quick-check:
name: ⚡ Quick Quality Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Quick lint
run: npm run lint
- name: Quick typecheck
run: npm run typecheck
- name: Quick test (no coverage)
run: npm test -- --reporter=basic
# Build development version
dev-build:
name: 🏗️ Development Build
needs: [quick-check]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build development version
run: npm run build
- name: Copy manifest and assets
run: |
cp public/manifest.json dist/
cp -r icons dist/
- name: Create dev package
run: |
cd dist
zip -r ../faf-extension-dev.zip .
- name: Upload dev build
uses: actions/upload-artifact@v4
with:
name: extension-dev-build
path: faf-extension-dev.zip
retention-days: 7
# Auto-fix formatting issues
auto-fix:
name: 🔧 Auto-fix Issues
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
ref: ${{ github.head_ref }}
- uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Auto-fix lint issues
run: npm run lint:fix || true
- name: Auto-format code
run: npm run format || true
- name: Commit fixes
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git add -A
git diff --staged --quiet || git commit -m "🤖 Auto-fix lint and formatting issues"
git push || true