Skip to content

Commit 54dbbbf

Browse files
committed
♻️ run scripts with npm run vs yarn
1 parent 3eed9ce commit 54dbbbf

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/main.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
node-version: 16
1515
- run: yarn install --frozen-lockfile
1616

17-
- run: yarn type
18-
- run: yarn lint
19-
- run: yarn test --ci
17+
- run: npm run type
18+
- run: npm run lint
19+
- run: npm run test --ci
2020

2121
test-action:
2222
runs-on: ubuntu-latest
@@ -63,7 +63,7 @@ jobs:
6363

6464
- name: build svg-only action
6565
run: |
66-
yarn build:action
66+
npm run build:action
6767
rm -r svg-only/dist
6868
mv packages/action/dist svg-only/dist
6969
@@ -99,7 +99,7 @@ jobs:
9999
node-version: 16
100100
- run: yarn install --frozen-lockfile
101101

102-
- run: yarn build:demo
102+
- run: npm run build:demo
103103
env:
104104
GITHUB_USER_CONTRIBUTION_API_ENDPOINT: https://snk-one.vercel.app/api/github-user-contribution/
105105

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
- name: build svg-only action
5454
run: |
5555
yarn install --frozen-lockfile
56-
yarn build:action
56+
npm run build:action
5757
rm -r svg-only/dist
5858
mv packages/action/dist svg-only/dist
5959

0 commit comments

Comments
 (0)