From 3818440e2bd1523fc6dc4047481a224d9d2c0e56 Mon Sep 17 00:00:00 2001 From: Kai Giokas Date: Sun, 4 Oct 2020 02:13:04 -0600 Subject: [PATCH] Run yamllint in parallel This doesn't require yarn to build anything or ffmpeg to be ready, so just do this in parallel with the rest of the jobs. --- .github/workflows/ci.yml | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e6063e3e..40053d64 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,19 +35,23 @@ jobs: cd gulp/ yarn cd .. - - name: Lint run: | yarn lint - - - name: YAML Lint - uses: ibiqlik/action-yamllint@v1.0.0 - with: - file_or_dir: translations/*.yaml - - name: TSLint run: | cd gulp yarn gulp translations.fullBuild cd .. yarn tslint + + yaml-lint: + name: yaml-lint + runs-on: ubuntu-latest + steps: + - name: Checkout repo + uses: actions/checkout@v2 + - name: YAML Lint + uses: ibiqlik/action-yamllint@v1.0.0 + with: + file_or_dir: translations/*.yaml