From 697c72f8d4bc184ef21738f57e154c3eb568c944 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim=20D=C3=BCsterhus?= Date: Thu, 22 Apr 2021 11:59:08 +0200 Subject: [PATCH] Update GitHub Actions to node.js 14 --- .github/workflows/javascript.yml | 2 +- .github/workflows/typescript.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/javascript.yml b/.github/workflows/javascript.yml index e04bdbe233..a5f35ade54 100644 --- a/.github/workflows/javascript.yml +++ b/.github/workflows/javascript.yml @@ -18,7 +18,7 @@ jobs: - name: Set up node.js uses: actions/setup-node@v2 with: - node-version: "12" + node-version: "14" - uses: actions/checkout@v2 - run: echo "::add-matcher::.github/javascript-syntax.json" - name: Remove files to be ignored diff --git a/.github/workflows/typescript.yml b/.github/workflows/typescript.yml index 04c1cf3b6d..ac3f9cd483 100644 --- a/.github/workflows/typescript.yml +++ b/.github/workflows/typescript.yml @@ -16,7 +16,7 @@ jobs: - name: Set up node.js uses: actions/setup-node@v2 with: - node-version: "12" + node-version: "14" - uses: actions/checkout@v2 - run: npm install - run: npx tsc --noEmit @@ -31,7 +31,7 @@ jobs: - name: Set up node.js uses: actions/setup-node@v2 with: - node-version: "12" + node-version: "14" - uses: actions/checkout@v2 - run: npm install - run: npx eslint . @@ -45,7 +45,7 @@ jobs: - name: Set up node.js uses: actions/setup-node@v2 with: - node-version: "12" + node-version: "14" - uses: actions/checkout@v2 - run: npm install - run: npx tsc -- 2.20.1