File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
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 :
1818 cache : ' npm'
1919 node-version : ${{ inputs.node-version }}
2020
21+ - name : Setup Bun
22+ uses : oven-sh/setup-bun@v2
23+
2124 - name : Setup turbo
2225 uses : actions/cache@v4
2326 with :
2831
2932 - name : Install global dependencies
3033 shell : bash
31- run : npm i -g turbo prettier typescript @changesets/cli @arethetypeswrong/cli
34+ run : bun i -g turbo prettier typescript @changesets/cli @arethetypeswrong/cli
3235
3336 - name : Install dependencies
3437 shell : bash
35- run : npm ci
38+ run : bun ci
You can’t perform that action at this time.
0 commit comments