Skip to content

Commit 84cd549

Browse files
committed
update workflows
1 parent 4a991f8 commit 84cd549

File tree

2 files changed

+8
-16
lines changed

2 files changed

+8
-16
lines changed

.github/workflows/lint.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,15 @@ env:
1919

2020
jobs:
2121
lint:
22-
name: 'Lint on Node.js ${{ matrix.node }} OS: ${{matrix.os}}'
23-
runs-on: ${{ matrix.os }}
24-
strategy:
25-
matrix:
26-
os: [ubuntu-latest]
27-
node: [14]
22+
name: 'Lint'
23+
runs-on: ubuntu-latest
2824
steps:
2925
- name: Checkout
3026
uses: actions/checkout@v2
31-
- name: Setup Node.js ${{ matrix.node }}
27+
- name: Setup Node.js v14.x
3228
uses: actions/setup-node@v2
3329
with:
34-
node-version: ${{ matrix.node }}
30+
node-version: 14
3531
cache: 'yarn'
3632
- name: Install
3733
run: yarn install

.github/workflows/size.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,17 @@ env:
1414

1515
jobs:
1616
size:
17-
name: 'Size check on Node.js ${{ matrix.node }} OS: ${{matrix.os}}'
18-
runs-on: ${{ matrix.os }}
17+
name: 'Size check'
18+
runs-on: ubuntu-latest
1919
env:
2020
CI_JOB_NUMBER: 1
21-
strategy:
22-
matrix:
23-
os: [ubuntu-latest]
24-
node: [14]
2521
steps:
2622
- name: Checkout
2723
uses: actions/checkout@v2
28-
- name: Setup Node.js ${{ matrix.node }}
24+
- name: Setup Node.js v16.x
2925
uses: actions/setup-node@v2
3026
with:
31-
node-version: ${{ matrix.node }}
27+
node-version: 16
3228
cache: 'yarn'
3329
- name: Install
3430
run: yarn install

0 commit comments

Comments
 (0)