From e495b5896b1c557e72f788267390852294f864b5 Mon Sep 17 00:00:00 2001 From: pietervdvn Date: Tue, 1 Jun 2021 13:11:05 +0200 Subject: [PATCH] Working on Continuous deployment --- .github/workflows/theme_validation.yml | 34 -------------------------- 1 file changed, 34 deletions(-) delete mode 100644 .github/workflows/theme_validation.yml diff --git a/.github/workflows/theme_validation.yml b/.github/workflows/theme_validation.yml deleted file mode 100644 index d31434147..000000000 --- a/.github/workflows/theme_validation.yml +++ /dev/null @@ -1,34 +0,0 @@ -name: Theme Validation -on: - push: - branches: - - develop - - master - -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Set up Node.js - uses: actions/setup-node@v1.2.0 - env: - ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true' - - - name: install deps - run: npm ci - - - name: create generated dir - run: mkdir ./assets/generated - - - name: create stub themes - run: "echo '{\"layers\": [], \"themes\": []}' > ./assets/generated/known_layers_and_themes.json" - - - name: generate translations - run: npm run generate:translations - - - name: Compile license info - run: npm run validate:licenses - - - name: Compile themes and layers - run: npm run validate:layeroverview