Merge pull request #12248 from tschaub/unmatrixed
Avoid naming required checks with a changing version
This commit is contained in:
44
.github/workflows/test.yml
vendored
44
.github/workflows/test.yml
vendored
@@ -13,16 +13,11 @@ env:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
pretest:
|
pretest:
|
||||||
name: Pre-Test (Node ${{ matrix.node }} / ${{ matrix.os }})
|
name: Pre-Test
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
|
||||||
os:
|
|
||||||
- ubuntu-latest
|
|
||||||
node:
|
|
||||||
- 16
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Clone Repository
|
- name: Clone Repository
|
||||||
@@ -31,7 +26,7 @@ jobs:
|
|||||||
- name: Set Node.js Version
|
- name: Set Node.js Version
|
||||||
uses: actions/setup-node@v1
|
uses: actions/setup-node@v1
|
||||||
with:
|
with:
|
||||||
node-version: ${{ matrix.node }}
|
node-version: 16
|
||||||
|
|
||||||
- name: Determine Cache Directory
|
- name: Determine Cache Directory
|
||||||
id: npm-cache
|
id: npm-cache
|
||||||
@@ -53,16 +48,11 @@ jobs:
|
|||||||
run: npm run pretest
|
run: npm run pretest
|
||||||
|
|
||||||
spec:
|
spec:
|
||||||
name: Spec (Node ${{ matrix.node }} / ${{ matrix.os }})
|
name: Spec
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
|
||||||
os:
|
|
||||||
- ubuntu-latest
|
|
||||||
node:
|
|
||||||
- 16
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Clone Repository
|
- name: Clone Repository
|
||||||
@@ -71,7 +61,7 @@ jobs:
|
|||||||
- name: Set Node.js Version
|
- name: Set Node.js Version
|
||||||
uses: actions/setup-node@v1
|
uses: actions/setup-node@v1
|
||||||
with:
|
with:
|
||||||
node-version: ${{ matrix.node }}
|
node-version: 16
|
||||||
|
|
||||||
- name: Determine Cache Directory
|
- name: Determine Cache Directory
|
||||||
id: npm-cache
|
id: npm-cache
|
||||||
@@ -93,16 +83,11 @@ jobs:
|
|||||||
run: npm run test-spec
|
run: npm run test-spec
|
||||||
|
|
||||||
build:
|
build:
|
||||||
name: Build (Node ${{ matrix.node }} / ${{ matrix.os }})
|
name: Build (Node 16 / ubuntu-latest
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
|
||||||
os:
|
|
||||||
- ubuntu-latest
|
|
||||||
node:
|
|
||||||
- 16
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Clone Repository
|
- name: Clone Repository
|
||||||
@@ -111,7 +96,7 @@ jobs:
|
|||||||
- name: Set Node.js Version
|
- name: Set Node.js Version
|
||||||
uses: actions/setup-node@v1
|
uses: actions/setup-node@v1
|
||||||
with:
|
with:
|
||||||
node-version: ${{ matrix.node }}
|
node-version: 16
|
||||||
|
|
||||||
- name: Determine Cache Directory
|
- name: Determine Cache Directory
|
||||||
id: npm-cache
|
id: npm-cache
|
||||||
@@ -133,16 +118,11 @@ jobs:
|
|||||||
run: npm run build-package
|
run: npm run build-package
|
||||||
|
|
||||||
rendering:
|
rendering:
|
||||||
name: Rendering (Node ${{ matrix.node }} / ${{ matrix.os }})
|
name: Rendering
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
|
||||||
os:
|
|
||||||
- ubuntu-latest
|
|
||||||
node:
|
|
||||||
- 16
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Clone Repository
|
- name: Clone Repository
|
||||||
@@ -151,7 +131,7 @@ jobs:
|
|||||||
- name: Set Node.js Version
|
- name: Set Node.js Version
|
||||||
uses: actions/setup-node@v1
|
uses: actions/setup-node@v1
|
||||||
with:
|
with:
|
||||||
node-version: ${{ matrix.node }}
|
node-version: 16
|
||||||
|
|
||||||
- name: Determine Cache Directory
|
- name: Determine Cache Directory
|
||||||
id: npm-cache
|
id: npm-cache
|
||||||
|
|||||||
Reference in New Issue
Block a user