File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 11name : Setup CI
22description : |
3- This action sets up Node.js and installs dependencies for the project.
3+ This action sets up Node.js, Bun and installs dependencies for the project.
44 It also configures caching for TurboRepo to speed up the build process.
55
66inputs :
1515 - name : Setup Node.js
1616 uses : actions/setup-node@v4
1717 with :
18- cache : ' npm'
1918 node-version : ${{ inputs.node-version }}
2019
20+ - name : Setup Bun
21+ uses : oven-sh/setup-bun@v2
22+
2123 - name : Setup turbo
2224 uses : actions/cache@v4
2325 with :
2830
2931 - name : Install global dependencies
3032 shell : bash
31- run : npm i -g turbo prettier typescript @changesets/cli @arethetypeswrong/cli
33+ run : bun i -g turbo prettier typescript @changesets/cli @arethetypeswrong/cli
3234
3335 - name : Install dependencies
3436 shell : bash
35- run : npm ci
37+ run : bun ci
You can’t perform that action at this time.
0 commit comments