From fc70fb3b0c8cd4dc4b3c1dc917faa8de8b8cf5b4 Mon Sep 17 00:00:00 2001 From: Ronald Moesbergen Date: Fri, 3 May 2024 13:44:34 +0200 Subject: [PATCH] chore: use biome ci, fix test import sort --- .github/workflows/pull-request.yml | 2 +- tests/blink_example.spec.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 6c5842f..21ee016 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -18,7 +18,7 @@ jobs: - name: Install node modules run: yarn --frozen-lockfile --prefer-offline - name: Run Biome - run: yarn biome check src tests + run: yarn biome ci src tests - name: Run Playwright tests run: yarn playwright test - uses: actions/upload-artifact@v4 diff --git a/tests/blink_example.spec.ts b/tests/blink_example.spec.ts index b9fe46f..09c1832 100644 --- a/tests/blink_example.spec.ts +++ b/tests/blink_example.spec.ts @@ -1,6 +1,6 @@ -import { test, expect } from "@playwright/test"; -import { goToHomePage } from "./utils"; import consumers from "node:stream/consumers"; +import { expect, test } from "@playwright/test"; +import { goToHomePage } from "./utils"; test.beforeEach(goToHomePage);