File tree Expand file tree Collapse file tree 2 files changed +35
-1
lines changed
Expand file tree Collapse file tree 2 files changed +35
-1
lines changed Original file line number Diff line number Diff line change 1+
2+ name : Push
3+
4+ on : [ push ]
5+
6+ jobs :
7+
8+ build :
9+
10+ runs-on : ubuntu-latest
11+
12+ strategy :
13+ fail-fast : false
14+ matrix :
15+ node-version :
16+ - 18.x # Maintenance
17+ - 20.x # Active
18+ - 21.x # Current
19+
20+ steps :
21+
22+ - name : Enable Node.js Corepack
23+ run : corepack enable
24+
25+ - name : Use Node.js ${{ matrix.node-version }}
26+ uses : actions/setup-node@v4
27+ with :
28+ node-version : ${{ matrix.node-version }}
29+
30+ - name : Checkout main branch
31+ uses : actions/checkout@v4
32+
33+ - name : Yarn install
34+ run : yarn install
Original file line number Diff line number Diff line change 4545 "exports" : {},
4646 "files" : [],
4747 "scripts" : {
48- "postinstall" : " husky install && yarn build:all" ,
48+ "postinstall" : " yarn build:all" ,
4949 "clean" : " shx rm -rf ./**/node_modules" ,
5050 "build:all" : " yarn workspaces foreach --exclude . -A -pi -t run build" ,
5151 "test:all" : " yarn workspaces foreach --exclude . -A -pi run test" ,
You can’t perform that action at this time.
0 commit comments