Skip to content

Commit

Permalink
fix variables using in action
Browse files Browse the repository at this point in the history
  • Loading branch information
yuriipavlov committed Nov 26, 2023
1 parent f44b75f commit a65c5fc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/workflow-code-qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
php-version: ${{ env.PHP_VERSION }}

- name: Checkout repository
uses: actions/checkout@v4
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: $NODE_VERSION
node-version: ${{ env.NODE_VERSION }}

- name: Install npm Dependencies
run: npm run install-dev
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: $NODE_VERSION
node-version: ${{ env.NODE_VERSION }}

- name: Run ESLint
run: npm run lint:js
Expand Down

0 comments on commit a65c5fc

Please sign in to comment.