We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c00146f commit ae5d8f9Copy full SHA for ae5d8f9
.github/workflows/chromatic.yml
@@ -15,7 +15,7 @@ jobs:
15
steps:
16
- uses: actions/checkout@v1
17
- name: Install dependencies
18
- run: yarn
+ run: npm
19
# 👇 Adds Chromatic as a step in the workflow
20
- name: Publish to Chromatic
21
uses: chromaui/action@v1
.github/workflows/main.yml
@@ -26,10 +26,10 @@ jobs:
26
uses: bahmutov/npm-install@v1
27
28
- name: Lint
29
- run: yarn lint
+ run: npm lint
30
31
- name: Test
32
- run: yarn test --ci --coverage --maxWorkers=2
+ run: npm test --ci --coverage --maxWorkers=2
33
34
- name: Build
35
- run: yarn build
+ run: npm build
0 commit comments