From 6660bf50b026422ecf4a5d54f58395d5a2d2f7ec Mon Sep 17 00:00:00 2001 From: Kir_Antipov Date: Fri, 19 May 2023 22:13:46 +0300 Subject: [PATCH] Forgot to switch testing environment to Node16 --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 100fa80..e15fbee 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,11 +6,11 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - name: Set up Node.js v12 + - uses: actions/checkout@v3 + - name: Set up Node.js v16 uses: actions/setup-node@v1 with: - node-version: 12 + node-version: 16 - name: Set up node modules run: npm ci