diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index bad3f42..52a600f 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -5,8 +5,8 @@ name: Lint code base # https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions on: - # push: - # branches: [main, develop] + push: + branches: [main, develop] pull_request: branches: [main] diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index e90745e..7de6bce 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -5,9 +5,9 @@ on: pull_request: branches: [main] -# permissions: -# actions: write -# checks: write +permissions: + actions: write + checks: write jobs: test: diff --git a/.github/workflows/vitest.yml b/.github/workflows/vitest.yml index 1dc66c3..c380144 100644 --- a/.github/workflows/vitest.yml +++ b/.github/workflows/vitest.yml @@ -1,7 +1,7 @@ name: Unit Tests (Vitest) on: - push: - branches: [main] + # push: + # branches: [main] pull_request: branches: [main] diff --git a/playwright.config.ts b/playwright.config.ts index 33c531c..7bbed49 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -43,59 +43,59 @@ export const config = defineConfig({ baseURL: 'http://localhost:3033', }, timeout: 300e3, // 5 minutes - retries: 3, - }, - { - name: 'firefox', - use: { - ...devices['Desktop Firefox'], - baseURL: 'http://localhost:3033', - }, - timeout: 300e3, // 5 minutes - retries: 3, - }, - { - name: 'webkit', - use: { - ...devices['Desktop Safari'], - baseURL: 'http://localhost:3033', - }, - timeout: 300e3, // 5 minutes - retries: 3, - }, - { - name: 'iPhone SE', - use: { - ...devices['iPhone SE'], - colorScheme: 'dark', - baseURL: 'http://localhost:3033', - browserName: 'webkit', - }, - timeout: 300e3, // 5 minutes - retries: 3, - }, - { - name: 'iPad Mini', - use: { - ...devices['iPad Mini'], - colorScheme: 'light', - baseURL: 'http://localhost:3033', - browserName: 'firefox', - }, - timeout: 300e3, // 5 minutes - retries: 3, - }, - { - name: 'Galaxy S9+', - use: { - ...devices['Galaxy S9+'], - colorScheme: 'no-preference', - baseURL: 'http://localhost:3033', - browserName: 'chromium', - }, - timeout: 300e3, // 5 minutes - retries: 3, + // retries: 3, }, + // { + // name: 'firefox', + // use: { + // ...devices['Desktop Firefox'], + // baseURL: 'http://localhost:3033', + // }, + // timeout: 300e3, // 5 minutes + // retries: 3, + // }, + // { + // name: 'webkit', + // use: { + // ...devices['Desktop Safari'], + // baseURL: 'http://localhost:3033', + // }, + // timeout: 300e3, // 5 minutes + // retries: 3, + // }, + // { + // name: 'iPhone SE', + // use: { + // ...devices['iPhone SE'], + // colorScheme: 'dark', + // baseURL: 'http://localhost:3033', + // browserName: 'webkit', + // }, + // timeout: 300e3, // 5 minutes + // retries: 3, + // }, + // { + // name: 'iPad Mini', + // use: { + // ...devices['iPad Mini'], + // colorScheme: 'light', + // baseURL: 'http://localhost:3033', + // browserName: 'firefox', + // }, + // timeout: 300e3, // 5 minutes + // retries: 3, + // }, + // { + // name: 'Galaxy S9+', + // use: { + // ...devices['Galaxy S9+'], + // colorScheme: 'no-preference', + // baseURL: 'http://localhost:3033', + // browserName: 'chromium', + // }, + // timeout: 300e3, // 5 minutes + // retries: 3, + // }, ], /* Run your local dev server before starting the tests */