Skip to content

Commit

Permalink
chore: migrate to Yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
crutchcorn committed Sep 6, 2024
1 parent 96e5175 commit 01cf046
Show file tree
Hide file tree
Showing 7 changed files with 12,616 additions and 18,741 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'npm'
node-version: '20.x'
cache: 'yarn'

- name: Install packages
run: npm ci
run: yarn install

- name: Run tests
run: npm test
run: yarn test
13 changes: 13 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,16 @@ testem.log
# System files
.DS_Store
Thumbs.db

.cache/
.yarn/cache/
website/.yarn/
.yarnrc
.yarn/*
!.yarn/patches
!.yarn/releases
!.yarn/plugins
!.yarn/sdks
!.yarn/versions
.pnp.*
*.tgz
893 changes: 893 additions & 0 deletions .yarn/releases/yarn-4.1.0.cjs

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
compressionLevel: mixed

enableGlobalCache: false

nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-4.1.0.cjs
Loading

0 comments on commit 01cf046

Please sign in to comment.