Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/files_pdfviewer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/node.yml')
-rw-r--r--.github/workflows/node.yml18
1 files changed, 9 insertions, 9 deletions
diff --git a/.github/workflows/node.yml b/.github/workflows/node.yml
index a971a7e..8a148df 100644
--- a/.github/workflows/node.yml
+++ b/.github/workflows/node.yml
@@ -11,18 +11,18 @@ 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: Checkout
+ 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: |