summaryrefslogtreecommitdiffstats
path: root/.github/workflows/node.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/node.yml')
-rw-r--r--.github/workflows/node.yml15
1 files changed, 7 insertions, 8 deletions
diff --git a/.github/workflows/node.yml b/.github/workflows/node.yml
index a971a7e6..8a53defd 100644
--- a/.github/workflows/node.yml
+++ b/.github/workflows/node.yml
@@ -11,18 +11,17 @@ jobs:
build:
runs-on: ubuntu-latest
- strategy:
- matrix:
- node-version: [12.x]
-
- name: node${{ matrix.node-version }}
+ name: node
steps:
- uses: actions/checkout@v2
- - name: Set up node ${{ matrix.node-version }}
- uses: actions/setup-node@v1
+ - name: Set up node
+ uses: actions/setup-node@v2
with:
- node-version: ${{ matrix.node-version }}
+ node-version: 14
+
+ - name: Set up npm7
+ run: npm i -g npm@7
- name: Install dependencies & build
run: |