File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Build
2+
3+ on :
4+ push :
5+ branches :
6+ - main
7+ pull_request :
8+
9+ jobs :
10+ Build :
11+ runs-on : ubuntu-24.04
12+ env :
13+ NODE_ENV : production
14+ steps :
15+ - uses : actions/checkout@v4
16+ - name : Restore node modules cache
17+ uses : actions/cache@v4
18+ with :
19+ path : node_modules
20+ key : ${{ runner.os }}-pnpm-${{ hashFiles('./package.json') }}
21+ restore-keys : |
22+ ${{ runner.os }}-pnpm-
23+ - name : Install pnpm
24+ uses : pnpm/action-setup@v4
25+ - name : Install dependencies
26+ run : pnpm install
27+ - name : Build package
28+ run : pnpm run build
Original file line number Diff line number Diff line change 77 "type" : " git" ,
88 "url" : " git+https://github.com/AlchemyCMS/alchemy-json_api.git"
99 },
10+ "engines" : {
11+ "node" : " >=20.19.0"
12+ },
1013 "keywords" : [
1114 " AlchemyCMS" ,
1215 " json:api" ,
You can’t perform that action at this time.
0 commit comments