Skip to content

Commit

Permalink
fix(ci): test workflow structure
Browse files Browse the repository at this point in the history
  • Loading branch information
line-o committed Jun 26, 2021
1 parent cfc25a9 commit a19a203
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ on:

jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node-version: [10.x, 12.x, 14.x]
docker-tag: [latest, release, 4.7.1]

runs-on: ${{ matrix.os }}
steps:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node-version: [10.x, 12.x, 14.x]
docker-tag: [latest, release, 4.7.1]

steps:
- uses: actions/checkout@v2

- name: Use Node.js ${{ matrix.node-version }}
Expand Down

0 comments on commit a19a203

Please sign in to comment.