mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-11-09 23:56:14 +01:00

[CLEANUP] Explicitly set the Ubuntu version for most CI steps (#172)

This commit is contained in:
Oliver Klee 2020-11-24 20:36:29 +01:00 committed by GitHub
parent b4936ebb6a
commit a9026832d6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,7 +12,7 @@ on:
jobs:
php-lint:
name: "PHP linter"
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- name: "Checkout"
uses: actions/checkout@v2
@ -31,7 +31,7 @@ jobs:
- 7.4
code-quality:
name: "Code quality checks"
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
-
name: "Checkout"
@ -71,7 +71,7 @@ jobs:
- 7.4
code-quality-frontend:
name: "Code quality frontend checks"
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
matrix:
command:
@ -91,7 +91,7 @@ jobs:
run: "yarn lint:${{ matrix.command }}"
xliff-lint:
name: "Xliff linter"
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
-
name: "Checkout"
@ -108,7 +108,7 @@ jobs:
--noout $(find Resources -name '*.xlf')"
unit-tests:
name: "Unit tests"
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
needs: php-lint
steps:
-