From be43f6ae979fbe677254e30bdcaa26a0bd2de4df Mon Sep 17 00:00:00 2001 From: Alexandre Batistella Bellas Date: Sun, 21 Jan 2024 14:55:13 -0300 Subject: [PATCH] ci: corrigir working directory --- .github/workflows/calculate-coverage.yaml | 3 --- .github/workflows/on-commit-test.yaml | 21 --------------------- 2 files changed, 24 deletions(-) diff --git a/.github/workflows/calculate-coverage.yaml b/.github/workflows/calculate-coverage.yaml index b640a46..efd9b70 100644 --- a/.github/workflows/calculate-coverage.yaml +++ b/.github/workflows/calculate-coverage.yaml @@ -15,15 +15,12 @@ jobs: node-version: 20 - name: Install dependencies - working-directory: ./typescript run: npm install - name: Build project - working-directory: ./typescript run: npm run build - name: Execute tests - working-directory: ./typescript run: npm run test:coverage - name: Send to coveralls diff --git a/.github/workflows/on-commit-test.yaml b/.github/workflows/on-commit-test.yaml index f04162e..c1eb3b5 100644 --- a/.github/workflows/on-commit-test.yaml +++ b/.github/workflows/on-commit-test.yaml @@ -12,31 +12,10 @@ jobs: node-version: 20 - name: Install dependencies - working-directory: ./typescript run: npm install - name: Build project - working-directory: ./typescript run: npm run build - name: Execute tests - working-directory: ./typescript run: npm run test - - php-unit-tests: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - name: Setup PHP - uses: shivammathur/setup-php@v2 - with: - php-version: "8.2" - - - name: Install dependencies - run: composer update - - - name: Dump autoload classes - run: composer dump-autoload -o - - - name: Execute tests - run: vendor/phpunit/phpunit/phpunit -c php/phpunit.xml