From 7babe7f1856ed0a586d0e1715639de806b28bc48 Mon Sep 17 00:00:00 2001 From: innovaker <66737976+innovaker@users.noreply.github.com> Date: Fri, 27 Nov 2020 14:57:22 +0000 Subject: refactor(workflows): align GitHub workflow conventions Cosmetic pass at aligning the conventions used in ZMK's workflows with GitHub's examples. Based on examples found at: https://github.com/actions/starter-workflows PR #433 --- .github/workflows/doc-checks.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to '.github/workflows/doc-checks.yml') diff --git a/.github/workflows/doc-checks.yml b/.github/workflows/doc-checks.yml index df0e53f..11f74c0 100644 --- a/.github/workflows/doc-checks.yml +++ b/.github/workflows/doc-checks.yml @@ -1,4 +1,4 @@ -name: doc-checks +name: Docs Checks on: push: @@ -13,8 +13,6 @@ on: jobs: lint: runs-on: ubuntu-latest - name: ESLint - steps: - uses: actions/checkout@v2 - uses: bahmutov/npm-install@v1 @@ -26,12 +24,11 @@ jobs: prettier: runs-on: ubuntu-latest name: Prettier - steps: - uses: actions/checkout@v2 - uses: bahmutov/npm-install@v1 with: working-directory: docs - - name: Prettier Check + - name: Prettier check run: npm run prettier:check working-directory: docs -- cgit v1.2.3