Skip to content

Commit b77cc57

Browse files
committed
switch scripts to yarn in yml
1 parent f31ba3d commit b77cc57

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/release-package.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ jobs:
1212
- uses: actions/setup-node@v3
1313
with:
1414
node-version: 16
15-
- run: npm ci
16-
- run: npm test
15+
- run: yarn install --frozen-lockfile
16+
- run: yarn test
1717

1818
publish-gpr:
1919
needs: build
@@ -27,7 +27,7 @@ jobs:
2727
with:
2828
node-version: 16
2929
registry-url: https://npm.pkg.github.com/
30-
- run: npm ci
31-
- run: npm publish
30+
- run: yarn install --frozen-lockfile
31+
- run: yarn publish
3232
env:
3333
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}

.npmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
@RoundtableLearning:registry=https://npm.pkg.github.com
1+
@roundtablelearning:registry=https://npm.pkg.github.com

0 commit comments

Comments
 (0)