-
-
Notifications
You must be signed in to change notification settings - Fork 0
102 lines (79 loc) · 2.86 KB
/
⤴️npm-update.yml
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: 🚀 Dependency Update and Vulnerability Scan
permissions:
contents: write
on:
push:
branches:
- main
schedule:
- cron: '0 2 * * 5'
workflow_dispatch:
jobs:
update-and-scan:
runs-on: ubuntu-latest
steps:
- name: 🛠️ Checkout code
uses: actions/checkout@v4
- name: 🔧 Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: 🗑️ Remove package-lock.json
run: rm -f package-lock.json
- name: 📦 Install npm-check-updates
run: npm install -g npm-check-updates
- name: ⬆️ Update all packages
run: |
npm install
- name: 📦 Update dependencies with legacy peer deps
run: npm update --legacy-peer-deps
- name: 📋 List installed dependencies
run: npm ls
- name: 🔍 Type check
run: npm run type-check
- name: 🧹 Lint
run: npm run lint
- name: 🧪 Run tests
run: npm test
- name: 🐶 Install Husky
run: npx husky install
- name: Check Test Results
id: check_tests
run: |
if [ $? -eq 0 ]; then
echo "::set-output name=tests_passed::true"
else
echo "::set-output name=tests_passed::false"
fi
- name: 🎭 Mask Debricked credentials
run: |
echo "::add-mask::${{ secrets.DEBRICKED_TOKEN }}"
- name: Install Debricked CLI
run: |
curl -L https://github.com/debricked/cli/releases/latest/download/cli_linux_x86_64.tar.gz | tar -xz debricked
sudo mv debricked /usr/local/bin/debricked
- name: 🛡️ Debricked Vulnerability Scan
run: |
debricked scan -t ${{ secrets.DEBRICKED_TOKEN }} -r ${{ github.repository }} -c ${{ github.sha }}
- name: Check Scan Results
id: check_scan
run: |
if [ $? -eq 0 ]; then
echo "::set-output name=scan_passed::true"
else
echo "::set-output name=scan_passed::false"
fi
- name: Debug Test Results
run: echo "tests_passed=${{ steps.check_tests.outputs.tests_passed }}"
- name: Debug Scan Results
run: echo "scan_passed=${{ steps.check_scan.outputs.scan_passed }}"
- name: 📝 Commit changes
if: steps.check_tests.outputs.tests_passed == 'true' && steps.check_scan.outputs.scan_passed == 'true'
run: |
git config --local user.name "Debugging Duck 🦆"
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git add .
git diff-index --quiet HEAD || git commit -m "⬆️ update all npm dependencies except ESLint ⬆️"
- name: 🚀 Push changes
if: steps.check_tests.outputs.tests_passed == 'true' && steps.check_scan.outputs.scan_passed == 'true'
run: git push