File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -11,33 +11,33 @@ jobs:
1111 runs-on : ubuntu-latest
1212 steps :
1313 - uses : actions/checkout@v3
14-
14+
1515 - name : Setup Node.js
1616 uses : actions/setup-node@v3
1717 with :
18- node-version : ' 20 '
19-
18+ node-version : " 20 "
19+
2020 - name : Install pnpm
2121 uses : pnpm/action-setup@v2
2222 with :
2323 version : 8
2424 run_install : false
25-
25+
2626 - name : Get pnpm store directory
2727 shell : bash
2828 run : |
2929 echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
30-
30+
3131 - uses : actions/cache@v3
3232 name : Setup pnpm cache
3333 with :
3434 path : ${{ env.STORE_PATH }}
3535 key : ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
3636 restore-keys : |
3737 ${{ runner.os }}-pnpm-store-
38-
38+
3939 - name : Install dependencies
40- run : pnpm install --frozen-lockfile
41-
40+ run : pnpm install --no- frozen-lockfile
41+
4242 - name : Type check
43- run : pnpm type-check
43+ run : pnpm type-check
You can’t perform that action at this time.
0 commit comments