From fcf5bda2b0449a4ff63eee4b85644588a80bae8b Mon Sep 17 00:00:00 2001 From: Badisi Date: Fri, 6 Sep 2024 16:35:17 +0200 Subject: [PATCH] chore(ci): use own actions --- .github/workflows/ci_release.yml | 2 +- .github/workflows/ci_tests.yml | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci_release.yml b/.github/workflows/ci_release.yml index 34c7842..49ffc39 100644 --- a/.github/workflows/ci_release.yml +++ b/.github/workflows/ci_release.yml @@ -10,7 +10,7 @@ jobs: ci_release: needs: ci_tests - uses: dsi-hug/actions/.github/workflows/action.yml@v2 + uses: badisi/actions/.github/workflows/action.yml@v1 secrets: NPM_TOKEN: ${{ secrets.NPM_TOKEN }} with: diff --git a/.github/workflows/ci_tests.yml b/.github/workflows/ci_tests.yml index 0f304ad..4e41c0f 100644 --- a/.github/workflows/ci_tests.yml +++ b/.github/workflows/ci_tests.yml @@ -5,9 +5,9 @@ on: workflow_call: push: branches: - - '**' + - "**" tags-ignore: - - '**' + - "**" concurrency: group: run-tests-group-${{ github.ref }} @@ -17,17 +17,17 @@ jobs: ci_tests: strategy: matrix: - os: ['ubuntu-latest', 'macos-latest', 'windows-latest'] + os: ["ubuntu-latest", "macos-latest", "windows-latest"] node: [18, 20] name: ${{ matrix.os }}_node${{ matrix.node }} runs-on: ${{ matrix.os }} steps: - name: Setup - uses: dsi-hug/actions/setup@v2 + uses: badisi/actions/setup@v1 with: - node-version: ${{ matrix.node }} - setup-chrome: true + node-version: ${{ matrix.node }} + setup-chrome: true - name: Build tests application working-directory: projects/tests-app @@ -38,8 +38,8 @@ jobs: shell: bash # use bash because powershell is used by default on Windows and background job are cleaned after the run # use global install (instead of npx) because otherwise the server won't stay up on Windows run: | - npm install -g http-server - http-server --port=4200 & + npm install -g http-server + http-server --port=4200 & - name: Make sure tests application is running shell: bash # use bash so that sleep is recognized even on Windows