Skip to content

Commit

Permalink
Moved node-version into separate setup-node step (fixes #53), moved n…
Browse files Browse the repository at this point in the history
…ode-version out of redundant matrix
  • Loading branch information
dotherightthing committed Aug 22, 2022
1 parent 715c7ea commit 4fb93b1
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/build.yml
Expand Up @@ -11,20 +11,19 @@ jobs:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [13.x]

steps:
# check out the repository, so the workflow can access it
- name: Checkout repo
uses: actions/checkout@v2

- uses: actions/setup-node@v2
with:
node-version: 13.x

- name: Setup PHP
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.2.15'
node-version: ${{ matrix.node-version }}

# env: https://github.com/actions/virtual-environments/blob/master/images/linux/Ubuntu1604-README.md
# mysql start: https://github.com/actions/virtual-environments/issues/739
Expand Down

0 comments on commit 4fb93b1

Please sign in to comment.