From 5715d67ad66a56d9d141fd07db559682c71f5f81 Mon Sep 17 00:00:00 2001 From: Gregor Martynus <39992+gr2m@users.noreply.github.com> Date: Sun, 31 Oct 2021 11:05:06 -0700 Subject: [PATCH] ci(release): use node 16 --- .github/workflows/release.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index dfc917af..58037d4f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,9 +9,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - uses: actions/setup-node@v1 + - uses: actions/setup-node@v2 with: - node-version: "12.x" + node-version: 16 + cache: npm - run: npm ci - run: npm run build - run: rm .gitignore # dist/ folder is ignored by default