fix: workflow
This commit is contained in:
parent
580cbd160b
commit
ed814d252b
2 changed files with 8 additions and 2 deletions
5
.github/workflows/lint.yml
vendored
5
.github/workflows/lint.yml
vendored
|
@ -13,8 +13,11 @@ jobs:
|
|||
with:
|
||||
node-version: 12
|
||||
|
||||
- name: Install pnpm
|
||||
run: curl -L https://unpkg.com/@pnpm/self-installer | node
|
||||
|
||||
- name: Install dependencies
|
||||
run: yarn install
|
||||
run: pnpm i
|
||||
|
||||
- name: Run Lint
|
||||
uses: icrawl/action-eslint@v1
|
||||
|
|
5
.github/workflows/tsc.yml
vendored
5
.github/workflows/tsc.yml
vendored
|
@ -13,8 +13,11 @@ jobs:
|
|||
with:
|
||||
node-version: 12
|
||||
|
||||
- name: Install pnpm
|
||||
run: curl -L https://unpkg.com/@pnpm/self-installer | node
|
||||
|
||||
- name: Install dependencies
|
||||
run: yarn install
|
||||
run: pnpm i
|
||||
|
||||
- name: Run TSC
|
||||
uses: icrawl/action-tsc@v1
|
||||
|
|
Loading…
Reference in a new issue