mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-21 20:16:12 +01:00
parent
76293755df
commit
fbb7e0c930
3 changed files with 6 additions and 6 deletions
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
@ -93,9 +93,9 @@ jobs:
|
|||
- name: "Checkout"
|
||||
uses: actions/checkout@v4
|
||||
- name: "Install modules"
|
||||
run: yarn
|
||||
run: npm install
|
||||
- name: "Run command"
|
||||
run: "yarn lint:${{ matrix.command }}"
|
||||
run: "npm run lint:${{ matrix.command }}"
|
||||
unit-tests:
|
||||
name: "Unit tests"
|
||||
runs-on: ubuntu-22.04
|
||||
|
|
|
@ -5,6 +5,6 @@
|
|||
key: "$CI_PROJECT_ID"
|
||||
paths:
|
||||
- Resources/Private/node_modules/
|
||||
- Resources/Private/.yarn
|
||||
- Resources/Private/.npm
|
||||
before_script:
|
||||
- yarn install --cache-folder .yarn
|
||||
- npm install --cache .npm
|
||||
|
|
|
@ -2,10 +2,10 @@ javascript-lint:
|
|||
extends: .default-frontend
|
||||
stage: lint
|
||||
script:
|
||||
- yarn lint:js
|
||||
- npm run lint:js
|
||||
|
||||
style-lint:
|
||||
extends: .default-frontend
|
||||
stage: lint
|
||||
script:
|
||||
- yarn lint:style
|
||||
- npm run lint:style
|
||||
|
|
Loading…
Reference in a new issue