Skip to content

Commit 7b72465

Browse files
authored
Merge pull request #19 from SentienceAPI/fix_release2
consistent workflow
2 parents 0327362 + ffe1321 commit 7b72465

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ jobs:
4646
npm ci
4747
4848
- name: Install Playwright Browsers
49-
uses: microsoft/playwright-github-action@v1
50-
with:
51-
browsers: chromium
49+
run: |
50+
npx playwright install chromium
51+
npx playwright install-deps chromium || true
5252
5353
- name: Run tests
5454
run: |

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ jobs:
2525

2626
- name: Install dependencies
2727
run: |
28-
npm ci --ignore-scripts
28+
npm ci
2929
3030
- name: Install Playwright Browsers
31-
uses: microsoft/playwright-github-action@v1
32-
with:
33-
browsers: chromium
31+
run: |
32+
npx playwright install chromium
33+
npx playwright install-deps chromium || true
3434
3535
- name: Build package
3636
run: |

0 commit comments

Comments
 (0)