From 1574ab79d89d671269170034c1d7ae7754b22b80 Mon Sep 17 00:00:00 2001 From: Fonger <5862369+Fonger@users.noreply.github.com> Date: Wed, 23 Mar 2022 16:19:00 +0800 Subject: [PATCH] ci(github): Update to Node 16 --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index acf096b..ca001d1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,12 +10,12 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: - node-version: 14 + node-version: 16 - uses: actions/cache@v1 id: yarn-cache with: path: .yarn/cache - key: ${{ runner.os }}-node-14-yarn-${{ hashFiles('**/yarn.lock') }} + key: ${{ runner.os }}-node-16-yarn-${{ hashFiles('**/yarn.lock') }} restore-keys: | ${{ runner.os }}-yarn- - run: yarn install --immutable