From 93839698f584fde55c74dc1d130144f322ed25d7 Mon Sep 17 00:00:00 2001 From: Reynaldo Putra Date: Tue, 30 Jul 2024 09:51:06 +0700 Subject: [PATCH] fix coding-standards && php.yml --- .github/workflows/coding-standards.yml | 7 ++++--- .github/workflows/php.yml | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/coding-standards.yml b/.github/workflows/coding-standards.yml index 1cad2e1..5ba7c4f 100644 --- a/.github/workflows/coding-standards.yml +++ b/.github/workflows/coding-standards.yml @@ -1,3 +1,4 @@ + name: "Coding Standards" on: [push] jobs: @@ -7,9 +8,9 @@ jobs: strategy: matrix: php-version: - - "8.2" + - "8.1" node-version: - - 20.14.0 + - 16 steps: - name: Checkout code @@ -79,4 +80,4 @@ jobs: - name: Commit changes uses: stefanzweifel/git-auto-commit-action@v4 with: - commit_message: Fix styling \ No newline at end of file + commit_message: Fix styling diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 63aaec2..959e454 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -9,7 +9,7 @@ jobs: fail-fast: true matrix: php: [8.2, 8.1] - laravel: ["11"] + laravel: ["9", "10"] dependency-version: [prefer-lowest, prefer-stable] name: L${{ matrix.laravel}} - P${{ matrix.php }} - ${{ matrix.dependency-version }}