From 008f08deaa3a1e9261959b2642bfc0178ee827e8 Mon Sep 17 00:00:00 2001 From: Masahiro Furudate <178inaba.git@gmail.com> Date: Sat, 4 Jul 2020 18:06:13 +0900 Subject: [PATCH] Fix workflow yaml file indent --- .github/workflows/versions.yml | 20 +++++++++++--------- .github/workflows/workflow.yml | 30 +++++++++++++++--------------- 2 files changed, 26 insertions(+), 24 deletions(-) diff --git a/.github/workflows/versions.yml b/.github/workflows/versions.yml index 14f72b16d..291412f44 100644 --- a/.github/workflows/versions.yml +++ b/.github/workflows/versions.yml @@ -63,12 +63,14 @@ jobs: os: [macos-latest, windows-latest, ubuntu-latest] go: [1.7, 1.8.6] steps: - - name: Checkout - uses: actions/checkout@v2 - - name: setup-go ${{ matrix.go }} - uses: ./ - with: - go-version: ${{ matrix.go }} - - name: verify go - run: __tests__/verify-go.sh ${{ matrix.go }} - shell: bash + - name: Checkout + uses: actions/checkout@v2 + + - name: setup-go ${{ matrix.go }} + uses: ./ + with: + go-version: ${{ matrix.go }} + + - name: verify go + run: __tests__/verify-go.sh ${{ matrix.go }} + shell: bash diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index ba5946407..873f3982a 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -16,23 +16,23 @@ jobs: matrix: operating-system: [ubuntu-latest, windows-latest] steps: - - name: Checkout - uses: actions/checkout@v2 + - name: Checkout + uses: actions/checkout@v2 - - name: Setup node 12 - uses: actions/setup-node@v1 - with: - node-version: 12 + - name: Setup node 12 + uses: actions/setup-node@v1 + with: + node-version: 12 - - name: npm install - run: npm install + - name: npm install + run: npm install - - name: Lint - run: npm run format-check + - name: Lint + run: npm run format-check - - name: npm test - run: npm test + - name: npm test + run: npm test - - name: audit packages - run: npm audit --audit-level=high - if: matrix.operating-system == 'ubuntu-latest' \ No newline at end of file + - name: audit packages + run: npm audit --audit-level=high + if: matrix.operating-system == 'ubuntu-latest'