chore: remove matrix for node

This commit is contained in:
Alexis Tyler
2021-03-28 07:57:49 -07:00
parent c266f04978
commit 182ba5a722
+6 -22
View File
@@ -11,10 +11,6 @@ jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- name: Checkout repo
uses: actions/checkout@v1
@@ -25,10 +21,10 @@ jobs:
key: ${{ secrets.UNRAID_BOT_SSH_KEY }}
known_hosts: ${{ secrets.KNOWN_HOSTS }}
- name: Install node v${{ matrix.node-version }}
- name: Install node v14
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
node-version: 14
- name: Load npm cache
uses: actions/cache@v2
@@ -47,10 +43,6 @@ jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- name: Checkout repo
uses: actions/checkout@v1
@@ -61,10 +53,10 @@ jobs:
key: ${{ secrets.UNRAID_BOT_SSH_KEY }}
known_hosts: ${{ secrets.KNOWN_HOSTS }}
- name: Install node v${{ matrix.node-version }}
- name: Install node v14
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
node-version: 14
- name: Load npm cache
uses: actions/cache@v2
@@ -99,10 +91,6 @@ jobs:
build-binary:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- name: Checkout repo
uses: actions/checkout@v1
@@ -113,10 +101,10 @@ jobs:
key: ${{ secrets.UNRAID_BOT_SSH_KEY }}
known_hosts: ${{ secrets.KNOWN_HOSTS }}
- name: Install node v${{ matrix.node-version }}
- name: Install node v14
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
node-version: 14
- name: Load npm cache
uses: actions/cache@v2
@@ -165,10 +153,6 @@ jobs:
needs: [build, build-binary]
strategy:
matrix:
node-version: [14.x]
steps:
- name: Checkout repo
uses: actions/checkout@v1