Skip to content

Commit e309efb

Browse files
authored
Merge pull request #724 from acacode/yarn
npm -> yarn
2 parents 3fd53ee + 651a67b commit e309efb

File tree

9 files changed

+3561
-3642
lines changed

9 files changed

+3561
-3642
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ jobs:
1818
node-version: 22
1919
check-latest: true
2020

21-
- name: Install npm packages
22-
run: npm ci --ignore-scripts
21+
- name: Install dependencies
22+
run: yarn install --immutable
2323

2424
- name: Run the tests
25-
run: npm run test-all
25+
run: yarn test-all

.gitignore

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
1-
node_modules
2-
.vscode
3-
.idea
4-
swagger-test-cli.*
1+
/.yarn/*
2+
!/.yarn/releases
3+
4+
/.idea/
5+
/.vscode/
6+
/dist/
7+
/node_modules/
8+
9+
.env
510
swagger-test-cli
6-
dist
7-
.env
11+
swagger-test-cli.*

.yarn/releases/yarn-4.2.1.cjs

Lines changed: 894 additions & 0 deletions
Large diffs are not rendered by default.

.yarnrc.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
nodeLinker: node-modules
2+
3+
preferInteractive: true
4+
5+
yarnPath: .yarn/releases/yarn-4.2.1.cjs

index.js

100644100755
File mode changed.

0 commit comments

Comments
 (0)