summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2021-06-14 08:56:23 +0200
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2021-06-14 08:56:23 +0200
commit0a6791dc89da456306189e5634fd0e4f5999a5e6 (patch)
tree8ec8413215223df2bcd4a832f847433afc534cb5 /.github
parent772f9d81fbb6a75c2c500be1afb1916d5bd4fb09 (diff)
Revert "Update actions"
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/lint.yml36
-rw-r--r--.github/workflows/node.yml15
2 files changed, 27 insertions, 24 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index fcd068a3..d6535c56 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -20,7 +20,7 @@ jobs:
- uses: actions/checkout@v2
- name: Set up php ${{ matrix.php-versions }}
- uses: shivammathur/setup-php@v2
+ uses: shivammathur/setup-php@v1
with:
php-version: ${{ matrix.php-versions }}
coverage: none
@@ -38,10 +38,10 @@ jobs:
name: cs php${{ matrix.php-versions }}
steps:
- name: Checkout
- uses: actions/checkout@v2
+ uses: actions/checkout@master
- name: Set up php
- uses: shivammathur/setup-php@v2
+ uses: shivammathur/setup-php@master
with:
php-version: ${{ matrix.php-versions }}
coverage: none
@@ -55,17 +55,18 @@ jobs:
node:
runs-on: ubuntu-latest
- name: eslint node
+ strategy:
+ matrix:
+ node-versions: [12.x]
+
+ name: eslint node${{ matrix.node-versions }}
steps:
- uses: actions/checkout@v2
- - name: Set up node
- uses: actions/setup-node@v2
+ - name: Set up node ${{ matrix.node-versions }}
+ uses: actions/setup-node@v1
with:
- node-version: 14
-
- - name: Set up npm7
- run: npm i -g npm@7
+ node-version: ${{ matrix.node-versions }}
- name: Install dependencies
run: npm ci
@@ -76,17 +77,18 @@ jobs:
stylelint:
runs-on: ubuntu-latest
- name: stylelint node
+ strategy:
+ matrix:
+ node-versions: [12.x]
+
+ name: stylelint node${{ matrix.node-versions }}
steps:
- uses: actions/checkout@v2
- - name: Set up node
- uses: actions/setup-node@v2
+ - name: Set up node ${{ matrix.node-versions }}
+ uses: actions/setup-node@v1
with:
- node-version: 14
-
- - name: Set up npm7
- run: npm i -g npm@7
+ node-version: ${{ matrix.node-versions }}
- name: Install dependencies
run: npm ci
diff --git a/.github/workflows/node.yml b/.github/workflows/node.yml
index 8a53defd..f44150d6 100644
--- a/.github/workflows/node.yml
+++ b/.github/workflows/node.yml
@@ -11,17 +11,18 @@ jobs:
build:
runs-on: ubuntu-latest
- name: node
+ strategy:
+ matrix:
+ node-versions: [12.x]
+
+ name: node${{ matrix.node-versions }}
steps:
- uses: actions/checkout@v2
- - name: Set up node
- uses: actions/setup-node@v2
+ - name: Set up node ${{ matrix.node-versions }}
+ uses: actions/setup-node@v1
with:
- node-version: 14
-
- - name: Set up npm7
- run: npm i -g npm@7
+ node-version: ${{ matrix.node-versions }}
- name: Install dependencies & build
run: |