We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 855be58 commit 89a643bCopy full SHA for 89a643b
.github/workflows/ci.yaml
@@ -79,35 +79,3 @@ jobs:
79
80
- name: Run linters
81
run: pnpm lint:all
82
-
83
- build:
84
- name: Build
85
- runs-on: ubuntu-latest
86
- needs: init
87
88
- steps:
89
- - name: Git checkout
90
- uses: actions/checkout@v4
91
92
- - name: Setup pnpm
93
- uses: pnpm/action-setup@v4
94
- with:
95
- version: ${{ env.PNPM_VERSION }}
96
97
- - name: Setup Node.js
98
- uses: actions/setup-node@v4
99
100
- node-version: ${{ env.NODE_VERSION }}
101
102
- - name: Restore cache
103
- uses: actions/cache@v4
104
105
- path: ~/.pnpm-store
106
- key: ${{ runner.os }}-typescript-leetcode-${{ hashFiles('**/pnpm-lock.yaml') }}-${{ hashFiles('**.ts') }}
107
108
- - name: Install dependencies
109
- if: needs.init.outputs.cache-hit != 'true'
110
- run: pnpm install --frozen-lockfile
111
112
- - name: Build project
113
- run: pnpm build
0 commit comments