Skip to content

Commit

Permalink
Fix workflow yaml file indent
Browse files Browse the repository at this point in the history
  • Loading branch information
178inaba committed Jul 24, 2020
1 parent e7252bb commit d0d28a1
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 24 deletions.
20 changes: 11 additions & 9 deletions .github/workflows/versions.yml
Expand Up @@ -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
30 changes: 15 additions & 15 deletions .github/workflows/workflow.yml
Expand Up @@ -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'
- name: audit packages
run: npm audit --audit-level=high
if: matrix.operating-system == 'ubuntu-latest'

0 comments on commit d0d28a1

Please sign in to comment.