Skip to content

Commit

Permalink
Hardcode grunt path & update Action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
mattyrob committed Jul 9, 2024
1 parent c38ba22 commit 806ea20
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/coding-standards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up PHP
uses: shivammathur/setup-php@v2
Expand Down Expand Up @@ -47,15 +47,15 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install NodeJS
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 14

- name: Cache NodeJS modules
uses: actions/cache@v3
uses: actions/cache@v4
env:
cache-name: cache-node-modules
with:
Expand All @@ -80,7 +80,7 @@ jobs:
grunt --version
- name: Run JSHint
run: grunt jshint:core
run: ./node_modules/grunt/bin/grunt jshint:core

- name: Run ESLint
run: grunt eslint:core
run: ./node_modules/grunt/bin/grunt eslint:core
2 changes: 1 addition & 1 deletion .github/workflows/php-compatibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up PHP
uses: shivammathur/setup-php@v2
Expand Down

0 comments on commit 806ea20

Please sign in to comment.