Skip to content

Commit ae5d8f9

Browse files
committed
yarn から npm に変更
1 parent c00146f commit ae5d8f9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/chromatic.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v1
1717
- name: Install dependencies
18-
run: yarn
18+
run: npm
1919
# 👇 Adds Chromatic as a step in the workflow
2020
- name: Publish to Chromatic
2121
uses: chromaui/action@v1

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ jobs:
2626
uses: bahmutov/npm-install@v1
2727

2828
- name: Lint
29-
run: yarn lint
29+
run: npm lint
3030

3131
- name: Test
32-
run: yarn test --ci --coverage --maxWorkers=2
32+
run: npm test --ci --coverage --maxWorkers=2
3333

3434
- name: Build
35-
run: yarn build
35+
run: npm build

0 commit comments

Comments
 (0)