We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4e8626 commit e996282Copy full SHA for e996282
.github/actions/setup/action.yml
@@ -0,0 +1,17 @@
1
+name: Setup
2
+description: Setup the environment
3
+
4
+runs:
5
+ using: composite
6
+ steps:
7
+ - uses: jdx/mise-action@5083fe46898c414b2475087cc79da59e7da859e8 # v2.1.11
8
9
+ - uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
10
+ with:
11
+ path: ~/.bun/install/cache
12
+ key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lock') }}
13
+ restore-keys: |
14
+ ${{ runner.os }}-bun-
15
+ - name: Install dependencies
16
+ shell: bash
17
+ run: bun install --frozen-lockfile
0 commit comments