From 28ff8577691a702cd8cc3b724bc8452f2f465244 Mon Sep 17 00:00:00 2001 From: Jorge Manrubia Date: Tue, 15 Oct 2024 11:05:00 +0200 Subject: [PATCH] Fix CI issues --- .github/workflows/ci.yml | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 878a6e04c..120417d88 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,21 +8,17 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: - node-version: '16' + node-version: lts/* cache: 'yarn' - - run: yarn install --frozen-lockfile - - run: yarn run playwright install --with-deps + - name: Install Playwright dependencies + run: yarn install --frozen-lockfile + - run: npx playwright install-deps + - run: yarn run playwright install - run: yarn build - - name: Set Chrome Version - run: | - CHROMEVER="$(chromedriver --version | cut -d' ' -f2)" - echo "Actions ChromeDriver is $CHROMEVER" - echo "CHROMEVER=${CHROMEVER}" >> $GITHUB_ENV - - name: Lint run: yarn lint