Compare commits
1 commit
6984b82d28
...
78d97489c1
Author | SHA1 | Date | |
---|---|---|---|
78d97489c1 |
1 changed files with 9 additions and 3 deletions
|
@ -187,9 +187,15 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
cd frontend
|
cd frontend
|
||||||
bun install
|
bun install
|
||||||
- uses: actions/setup-node@v4
|
- name: Install node 20
|
||||||
with:
|
run: |
|
||||||
node-version: 20
|
apt-get purge nodejs -y
|
||||||
|
apt-get update -y
|
||||||
|
apt-get install -y --no-install-recommends curl ca-certificates gnupg
|
||||||
|
curl -fsSL https://deb.nodesource.com/setup_20.x | bash -
|
||||||
|
apt-get install -y --no-install-recommends nodejs
|
||||||
|
apt-get clean
|
||||||
|
rm -rf /var/lib/apt/lists/*
|
||||||
- run: bunx playwright install --with-deps
|
- run: bunx playwright install --with-deps
|
||||||
working-directory: ./frontend
|
working-directory: ./frontend
|
||||||
- name: Run Playwright tests
|
- name: Run Playwright tests
|
||||||
|
|
Reference in a new issue