Skip to content

Commit

Permalink
chore: add corepack enable in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavan Soratur authored and Pavan Soratur committed Nov 6, 2024
1 parent 95f228c commit beeae04
Showing 1 changed file with 18 additions and 12 deletions.
30 changes: 18 additions & 12 deletions .github/workflows/check-clean.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,12 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: format
run: |
yarn install
yarn format:check
- name: Enable Corepack
run: corepack enable
- name: Install dependencies
run: yarn install
- name: Format Check
run: yarn format:check

lint:
name: lint
Expand All @@ -40,10 +42,12 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: lint
run: |
yarn install
yarn lint:check
- name: Enable Corepack
run: corepack enable
- name: Install dependencies
run: yarn install
- name: Lint Check
run: yarn lint:check

ts-check:
name: ts-check
Expand All @@ -57,7 +61,9 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: ts-check
run: |
yarn install
yarn ts-check
- name: Enable Corepack
run: corepack enable
- name: Install dependencies
run: yarn install
- name: Type Check
run: yarn ts-check

0 comments on commit beeae04

Please sign in to comment.