Skip to content

Commit 25e9e34

Browse files
committed
Fix workflows yml
1 parent 8cfc7fa commit 25e9e34

File tree

2 files changed

+8
-15
lines changed

2 files changed

+8
-15
lines changed

.github/workflows/main.yml

+4-9
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,10 @@ jobs:
1212

1313
steps:
1414
- uses: actions/checkout@v2
15-
- uses: borales/[email protected]
16-
with:
17-
cmd: yarn
18-
- uses: borales/[email protected]
19-
with:
20-
cmd: yarn test
21-
- uses: borales/[email protected]
22-
with:
23-
cmd: yarn build
15+
- run: npm i yarn
16+
- run: yarn
17+
- run: yarn test
18+
- run: yarn build
2419
- uses: nyaayaya/package-version@v1
2520
with:
2621
path: './package.json'

.github/workflows/storybook.yml

+4-6
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,10 @@ jobs:
1212
uses: actions/checkout@v2
1313

1414
- name: Build
15-
- uses: borales/[email protected]
16-
with:
17-
cmd: yarn
18-
- uses: borales/[email protected]
19-
with:
20-
cmd: yarn build-storybook
15+
run: |
16+
npm i yarn
17+
yarn
18+
yarn run build-storybook
2119
2220
- name: Deploy to GitHub Pages
2321
uses: Cecilapp/GitHub-Pages-deploy@v3

0 commit comments

Comments
 (0)