Skip to content

Commit

Permalink
env: use pnpm (#938)
Browse files Browse the repository at this point in the history
  • Loading branch information
bokuweb authored Apr 21, 2024
1 parent 87c5f9e commit 3ea15b1
Show file tree
Hide file tree
Showing 3 changed files with 12,847 additions and 14,226 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,13 @@ jobs:
- uses: actions/setup-node@master
with:
node-version: 20
- name: yarn
run: yarn --frozen-lockfile
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Install dependencies
run: pnpm i --frozen-lockfile
- name: lint
run: yarn lint
run: pnpm lint

tsc:
runs-on: ubuntu-latest
Expand All @@ -21,10 +24,13 @@ jobs:
- uses: actions/setup-node@master
with:
node-version: 20
- name: yarn
run: yarn --frozen-lockfile
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Install dependencies
run: pnpm i --frozen-lockfile
- name: tsc
run: yarn tsc
run: pnpm tsc

# test:
# runs-on: ubuntu-latest
Expand Down
Loading

0 comments on commit 3ea15b1

Please sign in to comment.