Skip to content

Commit e136a4e

Browse files
authored
Merge pull request #10 from lightninglabs/yarn
Move from npm to yarn
2 parents 275d2b2 + 8f8c8c4 commit e136a4e

File tree

8 files changed

+2261
-6982
lines changed

8 files changed

+2261
-6982
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ jobs:
99
uses: actions/setup-node@v3
1010
with:
1111
node-version: '12.x'
12-
- run: npm ci
13-
- run: npm run build
12+
- run: yarn install --frozen-lockfile
13+
- run: yarn run build

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ jobs:
99
uses: actions/setup-node@v3
1010
with:
1111
node-version: '12.x'
12-
- run: npm ci
13-
- run: npm run lint
12+
- run: yarn install --frozen-lockfile
13+
- run: yarn run lint

.github/workflows/npm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
with:
1313
node-version: '16.x'
1414
registry-url: 'https://registry.npmjs.org'
15-
- run: npm ci
15+
- run: yarn install --frozen-lockfile
1616
- run: npm publish --access public
1717
env:
1818
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

.github/workflows/prettier.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ jobs:
99
uses: actions/setup-node@v3
1010
with:
1111
node-version: '12.x'
12-
- run: npm ci
13-
- run: npm run prettier
12+
- run: yarn install --frozen-lockfile
13+
- run: yarn run prettier

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Then run the following commands:
2626

2727
```
2828
# download schemas
29-
npm run update-protos
29+
yarn run update-protos
3030
# format schemas
31-
npm run generate
31+
yarn run generate
3232
```

0 commit comments

Comments
 (0)