mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 08:56:13 +01:00
13 lines
285 B
YAML
13 lines
285 B
YAML
|
.default-frontend:
|
||
|
image: node:latest
|
||
|
needs: [ ]
|
||
|
cache:
|
||
|
key: "$CI_PROJECT_ID"
|
||
|
paths:
|
||
|
- Resources/Private/node_modules/
|
||
|
- Resources/Private/.yarn
|
||
|
before_script:
|
||
|
- npm install -g eslint
|
||
|
- cd ./Resources/Private
|
||
|
- yarn install --cache-folder .yarn
|