From e2b4257c9317727e97be68e7f5c6ddcd6b0762eb Mon Sep 17 00:00:00 2001 From: kobenguyent Date: Fri, 26 Jan 2024 11:30:42 +0100 Subject: [PATCH] try out GHA --- .github/workflows/appiumV2.yml | 2 +- .github/workflows/doc-generation.yml | 2 +- .github/workflows/dtslint.yml | 2 +- .github/workflows/expectHelper.yml | 2 +- .github/workflows/playwright.yml | 8 ++++---- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/appiumV2.yml b/.github/workflows/appiumV2.yml index ecc76314d..51a97be31 100644 --- a/.github/workflows/appiumV2.yml +++ b/.github/workflows/appiumV2.yml @@ -32,7 +32,7 @@ jobs: - uses: actions/checkout@v4 - name: Appium common steps - uses: ./.github/actions/checkoutAndInstallLibs.steps.yml + uses: CodeceptJS/CodeceptJS/.github/actions/checkoutAndInstallLibs.steps.yml - name: Run Appium Tests run: npm run test:${{ matrix.test-suite }} diff --git a/.github/workflows/doc-generation.yml b/.github/workflows/doc-generation.yml index 479171bd4..ba48f75c4 100644 --- a/.github/workflows/doc-generation.yml +++ b/.github/workflows/doc-generation.yml @@ -21,7 +21,7 @@ jobs: node-version: ${{ matrix.node-version }} - name: Checkout and install dependencies steps - uses: ./.github/actions/checkoutAndInstallLibs.steps.yml + uses: CodeceptJS/CodeceptJS/.github/actions/checkoutAndInstallLibs.steps.yml - name: Configure git user run: | diff --git a/.github/workflows/dtslint.yml b/.github/workflows/dtslint.yml index 6e2c64f33..2d83361ea 100644 --- a/.github/workflows/dtslint.yml +++ b/.github/workflows/dtslint.yml @@ -22,6 +22,6 @@ jobs: node-version: ${{ matrix.node-version }} - name: Checkout and install dependencies steps - uses: ./.github/actions/checkoutAndInstallLibs.steps.yml + uses: CodeceptJS/CodeceptJS/.github/actions/checkoutAndInstallLibs.steps.yml - run: npm run def && npm run dtslint diff --git a/.github/workflows/expectHelper.yml b/.github/workflows/expectHelper.yml index 072e1fb5b..ee5cb9600 100644 --- a/.github/workflows/expectHelper.yml +++ b/.github/workflows/expectHelper.yml @@ -29,7 +29,7 @@ jobs: - uses: actions/checkout@v4 - name: Checkout and install dependencies steps - uses: ./.github/actions/checkoutAndInstallLibs.steps.yml + uses: CodeceptJS/CodeceptJS/.github/actions/checkoutAndInstallLibs.steps.yml - name: run unit tests run: ./node_modules/.bin/mocha test/helper/Expect_test.js --timeout 5000 diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index bb78c520a..3e14f8202 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -26,10 +26,10 @@ jobs: steps: - name: Checkout and install dependencies steps - uses: ./.github/actions/checkoutAndInstallLibs.steps.yml + uses: CodeceptJS/CodeceptJS/.github/actions/checkoutAndInstallLibs.steps.yml - name: Playwright common steps - uses: ./.github/actions/playwright.steps.yml + uses: CodeceptJS/CodeceptJS/.github/actions/playwright.steps.yml - name: run chromium unit tests run: ./node_modules/.bin/mocha test/helper/Playwright_test.js --timeout 5000 @@ -51,10 +51,10 @@ jobs: - uses: actions/checkout@v4 - name: Checkout and install dependencies steps - uses: ./.github/actions/checkoutAndInstallLibs.steps.yml + uses: CodeceptJS/CodeceptJS/.github/actions/checkoutAndInstallLibs.steps.yml - name: Playwright common steps - uses: ./.github/actions/playwright.steps.yml + uses: CodeceptJS/CodeceptJS/.github/actions/playwright.steps.yml - name: run ${{ matrix.browser }} tests run: BROWSER=${{ matrix.browser }} node ./bin/codecept.js run -c test/acceptance/codecept.Playwright.js --grep @Playwright --debug