-
Notifications
You must be signed in to change notification settings - Fork 2.7k
88 lines (70 loc) · 2.29 KB
/
check-packages.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
name: Check packages
on:
pull_request:
jobs:
dependency-deduplication:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'yarn'
- uses: tj-actions/changed-files@v41
id: changed-files-specific
with:
files: |
yarn.lock
- name: Check package duplicates
if: steps.changed-files-specific.outputs.any_changed == 'true'
run: |
echo "yarn.lock changed! Verifying package deduplication ..."
yarn run dedupe --list --fail
if [[ $? -ne 0 ]]; then
echo "Your changes introduced package duplication 🚨"
echo "Run 'yarn run dedupe' to fix those."
else
echo "No duplicate packages introduced ✅"
fi
dependency-mismatches:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 20.x
- uses: actions/github-script@v7
with:
script: |
const syncpackVersion = require('./package.json').devDependencies.syncpack;
if (typeof syncpackVersion !== 'string') {
core.setFailed("Please check 'package.json', it should include 'syncpack' in 'devDependencies'")
return
}
core.exportVariable('SYNCPACK_VERSION', syncpackVersion);
- run: |
npx syncpack@$SYNCPACK_VERSION list-mismatches
change-files:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 20.x
- uses: actions/github-script@v7
with:
script: |
const beachballVersion = require('./package.json').devDependencies.beachball;
if (typeof beachballVersion !== 'string') {
core.setFailed("Please check 'package.json', it should include 'beachball' in 'devDependencies'")
return
}
core.exportVariable('BEACHBALL_VERSION', beachballVersion);
- run: |
npx beachball@$BEACHBALL_VERSION check