Skip to content

Commit

Permalink
move back from pnpm to yarn4 lol
Browse files Browse the repository at this point in the history
  • Loading branch information
cameronbrill committed Feb 19, 2024
1 parent ed7f289 commit a8ca27c
Show file tree
Hide file tree
Showing 8 changed files with 20,911 additions and 30 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/.yarn/releases/** binary
/.yarn/plugins/** binary
12 changes: 5 additions & 7 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}
self: Mergeability

pnpm-check:
name: pnpm ${{ matrix.command }}
yarn-check:
name: yarn ${{ matrix.command }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand All @@ -26,18 +26,16 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: pnpm/action-setup@v3

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version-file: ".node-version"
cache: 'pnpm'
cache: 'yarn'

- name: Install project dependencies
run: pnpm install
run: yarn install --frozen-lockfile

- name: Check ${{ matrix.command }}
run: pnpm --silent ${{ matrix.command }}
run: yarn ${{ matrix.command }}
env:
FORCE_COLOR: 2
8 changes: 7 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,13 @@
.env.test.local
.env.production.local

pnpm-debug.log*
.yarn/*
!.yarn/cache
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions

.next

Expand Down
14,868 changes: 14,868 additions & 0 deletions .pnp.cjs

Large diffs are not rendered by default.

Loading

0 comments on commit a8ca27c

Please sign in to comment.