chore(ci): update Playwright workflow to use pnpm and remove .npmrc
This commit is contained in:
parent
1d57004e59
commit
dad1dfd26f
2 changed files with 6 additions and 6 deletions
9
.github/workflows/playwright.yml
vendored
9
.github/workflows/playwright.yml
vendored
|
|
@ -13,20 +13,23 @@ jobs:
|
||||||
- uses: actions/setup-node@v4
|
- uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: lts/*
|
node-version: lts/*
|
||||||
|
- uses: pnpm/action-setup@v4
|
||||||
|
with:
|
||||||
|
version: 9
|
||||||
- name: Install Deps (FFmpeg is install through Playwright)
|
- name: Install Deps (FFmpeg is install through Playwright)
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install -y libreoffice-writer
|
sudo apt-get install -y libreoffice-writer
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: npm ci
|
run: pnpm install --frozen-lockfile
|
||||||
- name: Install Playwright Browsers
|
- name: Install Playwright Browsers
|
||||||
run: npx playwright install --with-deps
|
run: pnpm exec playwright install --with-deps
|
||||||
- name: Run Playwright tests
|
- name: Run Playwright tests
|
||||||
env:
|
env:
|
||||||
NEXT_PUBLIC_NODE_ENV: test
|
NEXT_PUBLIC_NODE_ENV: test
|
||||||
API_BASE: https://api.deepinfra.com/v1/openai
|
API_BASE: https://api.deepinfra.com/v1/openai
|
||||||
API_KEY: ${{ secrets.DEEPINFRA_API_KEY }}
|
API_KEY: ${{ secrets.DEEPINFRA_API_KEY }}
|
||||||
run: npx playwright test --reporter=list,github,html
|
run: pnpm exec playwright test --reporter=list,github,html
|
||||||
- uses: actions/upload-artifact@v4
|
- uses: actions/upload-artifact@v4
|
||||||
if: ${{ !cancelled() }}
|
if: ${{ !cancelled() }}
|
||||||
with:
|
with:
|
||||||
|
|
|
||||||
3
.npmrc
3
.npmrc
|
|
@ -1,3 +0,0 @@
|
||||||
# pnpm configuration
|
|
||||||
auto-install-peers=true
|
|
||||||
strict-peer-dependencies=false
|
|
||||||
Loading…
Reference in a new issue