Skip to content

Commit d0370c9

Browse files
committed
locked and high test runs
1 parent bd623c7 commit d0370c9

File tree

2 files changed

+45
-2
lines changed

2 files changed

+45
-2
lines changed

.github/workflows/high-depends.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: High Dependencies
2+
on:
3+
push:
4+
pull_request:
5+
schedule:
6+
- cron: '0 */12 * * *'
7+
8+
jobs:
9+
locked:
10+
name: ${{ matrix.node-versions }} - ${{ matrix.os }}
11+
runs-on: ${{ matrix.os }}
12+
13+
strategy:
14+
fail-fast: false
15+
matrix:
16+
os: [ubuntu-latest, windows-2019]
17+
node-versions: [ '10', '12', '14' ]
18+
19+
steps:
20+
- name: Checkout
21+
uses: actions/[email protected]
22+
23+
- name: Node ${{matrix.node-versions}}
24+
uses: actions/setup-node@v2
25+
with:
26+
node-version: ${{matrix.node-versions}}
27+
28+
- name: Remove Lock File
29+
run: rm yarn.lock
30+
31+
- name: Install Yarn Dependencies
32+
run: yarn install
33+
if: matrix.node-versions != 10
34+
35+
- name: Install Yarn Dependencies Ignore Engines (Node 10)
36+
run: yarn install --ignore-engines
37+
if: matrix.node-versions == 10
38+
39+
- name: Show Installed Versions
40+
run: yarn list --depth=0
41+
42+
- name: Run Tests
43+
run: yarn test

.github/workflows/stable-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Stable Tests
1+
name: Locked Dependencies
22
on:
33
push:
44
pull_request:
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
locked:
10-
name: Locked Dependencies
10+
name: ${{ matrix.node-versions }} - ${{ matrix.os }}
1111
runs-on: ${{ matrix.os }}
1212

1313
strategy:

0 commit comments

Comments
 (0)