Skip to content

Commit

Permalink
Fix github actions checkout
Browse files Browse the repository at this point in the history
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
  • Loading branch information
skjnldsv committed Jul 27, 2020
1 parent e38f0a8 commit d66fc3e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
name: cs php${{ matrix.php-versions }}
steps:
- name: Checkout
uses: actions/checkout@master
uses: actions/checkout@v2

- name: Set up php
uses: shivammathur/setup-php@master
Expand All @@ -57,16 +57,16 @@ jobs:

strategy:
matrix:
node-versions: [12.x]
node-version: [12.x]

name: eslint node${{ matrix.node-versions }}
name: eslint node${{ matrix.node-version }}
steps:
- uses: actions/checkout@v2

- name: Set up node ${{ matrix.node-versions }}
- name: Set up node ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-versions: ${{ matrix.node-versions }}
node-version: ${{ matrix.node-version }}

- name: Install dependencies
run: npm ci
Expand All @@ -79,16 +79,16 @@ jobs:

strategy:
matrix:
node-versions: [12.x]
node-version: [12.x]

name: stylelint node${{ matrix.node-versions }}
name: stylelint node${{ matrix.node-version }}
steps:
- uses: actions/checkout@v2

- name: Set up node ${{ matrix.node-versions }}
- name: Set up node ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-versions: ${{ matrix.node-versions }}
node-version: ${{ matrix.node-version }}

- name: Install dependencies
run: npm ci
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ jobs:

strategy:
matrix:
node-versions: [12.x]
node-version: [12.x]

name: node${{ matrix.node-versions }}
name: node${{ matrix.node-version }}
steps:
- uses: actions/checkout@v2

- name: Set up node ${{ matrix.node-versions }}
- name: Set up node ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-versions: ${{ matrix.node-versions }}
node-version: ${{ matrix.node-version }}

- name: Install dependencies & build
run: |
Expand Down

0 comments on commit d66fc3e

Please sign in to comment.