Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem

Glarus, Switzerland
batch: true
branches:
include:
- master
- develop
resources:
- repo: self
variables:
- name: buildVersion
value: "1.0.$(Build.BuildId)"
- name: frontendDir
value: VHS.Smartphone.Frontend
jobs:
- job: Run
timeoutInMinutes: 20
steps:
- checkout: self
fetchDepth: 0
- task: NodeTool@0
inputs:
versionSpec: 20.17.0
displayName: Install Node.js
- script: |
npm i
npm run build
displayName: Install deps and build Frontend
workingDirectory: $(frontendDir)
- script: |
docker-compose -f image/docker-compose.vhs.yml up -d
displayName: Serve Frontend
- script: |
npx playwright install --with-deps chromium
npx playwright test
displayName: Run End 2 End Tests
workingDirectory: $(frontendDir)