From 5ae96476f406b68909d83c5df8dd1d988a9e5fe5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Mon, 14 Jun 2021 17:09:40 +0200 Subject: [PATCH] Bump CI to node@14/npm@7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- .github/workflows/appbuild.yml | 4 +++- .github/workflows/lint.yml | 9 +++++++-- .github/workflows/nightly.yml | 4 +++- .github/workflows/nodejs.yml | 4 +++- 4 files changed, 16 insertions(+), 5 deletions(-) diff --git a/.github/workflows/appbuild.yml b/.github/workflows/appbuild.yml index 34a5c149e..88fdbf644 100644 --- a/.github/workflows/appbuild.yml +++ b/.github/workflows/appbuild.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: - node-version: [12.x] + node-version: [14.x] steps: - uses: actions/checkout@v1 @@ -17,6 +17,8 @@ jobs: uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} + - name: Set up npm7 + run: npm i -g npm@7 - name: Setup PHP uses: shivammathur/setup-php@v1 with: diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 6c0bf4a52..de2c814e2 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -47,7 +47,7 @@ jobs: strategy: matrix: - node-version: [12.x] + node-version: [14.x] steps: - uses: actions/checkout@v2 @@ -55,6 +55,8 @@ jobs: uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} + - name: Set up npm7 + run: npm i -g npm@7 - name: Install dependencies run: npm ci - name: ESLint @@ -65,7 +67,7 @@ jobs: strategy: matrix: - node-versions: [12.x] + node-versions: [14.x] name: stylelint node${{ matrix.node-versions }} steps: @@ -76,6 +78,9 @@ jobs: with: node-versions: ${{ matrix.node-versions }} + - name: Set up npm7 + run: npm i -g npm@7 + - name: Install dependencies run: npm ci diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 3a1ddf78c..bf5dc4344 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: - node-version: [12.x] + node-version: [14.x] steps: - uses: actions/checkout@v1 @@ -22,6 +22,8 @@ jobs: uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} + - name: Set up npm7 + run: npm i -g npm@7 - name: Setup PHP uses: shivammathur/setup-php@v1 with: diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 3f60ab580..0634e847e 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: - node-version: [12.x] + node-version: [14.x] steps: - uses: actions/checkout@v1 @@ -17,6 +17,8 @@ jobs: uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} + - name: Set up npm7 + run: npm i -g npm@7 - name: install dependencies run: | npm ci