ci: fix
Build / Build-and-ng-test (pull_request) Failing after 1m57s Details

This commit is contained in:
Mihajlo Medjedovic 2024-05-02 12:56:52 +02:00
parent d77f2eb674
commit b3171a8125
1 changed files with 7 additions and 0 deletions

View File

@ -12,6 +12,13 @@ jobs:
with:
node-version: 20
- name: Install Google Chrome
run: |
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -
echo "deb http://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google.list
apt-get update
apt-get install -y google-chrome-stable xvfb
- name: Write .npmrc file
run: echo "$NPMRC" > client/.npmrc
shell: bash