From 46b4cf986da777b49da3e249b4eaae0a61b2ef6e Mon Sep 17 00:00:00 2001 From: Guusvanmeerveld Date: Tue, 22 Mar 2022 16:30:38 +0100 Subject: [PATCH] Upgrade Node version for Github actions --- .github/workflows/deploy.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 848a4ad..b5304dd 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -15,13 +15,15 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v1 with: - node-version: "12.x" + node-version: "16.x" - name: Install npm dependencies run: yarn install - name: Lint run: yarn lint + env: + NEXT_TELEMETRY_DISABLED: 1 deploy: runs-on: ubuntu-latest @@ -33,7 +35,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v1 with: - node-version: "12.x" + node-version: "16.x" - name: Install npm dependencies run: yarn install