Skip to content

Commit

Permalink
feat: add pnpm setup steup
Browse files Browse the repository at this point in the history
  • Loading branch information
angeloanan committed Jul 6, 2023
1 parent ea2b36e commit 41792d5
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,11 @@ jobs:
name: Run ESLint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v3
with:
version: 8.6.6
- uses: actions/setup-node@v3
with:
node-version: '20'
cache: 'pnpm'
Expand All @@ -20,8 +23,11 @@ jobs:
name: Run Type Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v3
with:
version: 8.6.6
- uses: actions/setup-node@v3
with:
node-version: '20'
cache: 'pnpm'
Expand All @@ -32,8 +38,11 @@ jobs:
name: Run Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v3
with:
version: 8.6.6
- uses: actions/setup-node@v3
with:
node-version: '20'
cache: 'pnpm'
Expand Down

0 comments on commit 41792d5

Please sign in to comment.