Skip to content

Commit 1003277

Browse files
committed
Update tasks priorities
1 parent b5753e8 commit 1003277

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

.github/workflows/install.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,16 @@ on:
1010

1111
jobs:
1212
install:
13-
# The type of runner that the job will run on
14-
runs-on: ${{ matrix.os }}
15-
1613
# The matrix of OS and Node.js versions
1714
strategy:
1815
matrix:
1916
os: [ ubuntu-latest, macos-latest, windows-latest ]
2017
node: [ 14, 16, 18, 'current' ]
2118

22-
steps:
19+
# The type of runner that the job will run on
20+
runs-on: ${{ matrix.os }}
2321

22+
steps:
2423
- name: "Use specified Node.js version"
2524
uses: actions/setup-node@v3
2625
with:

.github/workflows/testing.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ on: [pull_request]
66

77
jobs:
88
test:
9-
# The type of runner that the job will run on
10-
runs-on: ${{ matrix.os }}
11-
129
# The matrix of OS and Node.js versions
1310
strategy:
1411
matrix:
1512
os: [ ubuntu-latest, macos-latest, windows-latest ]
1613

14+
# The type of runner that the job will run on
15+
runs-on: ${{ matrix.os }}
16+
1717
steps:
1818
- name: "Checkout repository"
1919
uses: actions/checkout@v3

0 commit comments

Comments
 (0)