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

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Petry <vincent@nextcloud.com>2021-06-15 11:10:26 +0300
committerJoas Schilling <coding@schilljs.com>2021-06-17 17:48:26 +0300
commit1915022b33e378ff4c9abc3c1dc1718346fb4914 (patch)
tree53759aa181f1cdbe7c0bea50d74c0bd20eb91ed6 /.github
parent2f2b6b9679efd3c7f262499a31f9058b2a7f03c5 (diff)
Adjust jest workflow with node 14 + npm 7
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/jest.yml15
1 files changed, 7 insertions, 8 deletions
diff --git a/.github/workflows/jest.yml b/.github/workflows/jest.yml
index 7ae3ea689..e115d67ab 100644
--- a/.github/workflows/jest.yml
+++ b/.github/workflows/jest.yml
@@ -11,18 +11,17 @@ jobs:
build:
runs-on: ubuntu-latest
- strategy:
- matrix:
- node-versions: [12.x]
-
- name: node${{ matrix.node-versions }}
+ name: node
steps:
- uses: actions/checkout@v2
- - name: Set up node ${{ matrix.node-versions }}
- uses: actions/setup-node@v1
+ - name: Set up node
+ uses: actions/setup-node@v2
with:
- node-version: ${{ matrix.node-versions }}
+ node-version: 14
+
+ - name: Set up npm7
+ run: npm i -g npm@7
- name: Install dependencies
run: npm ci