From 46cf05b7e5e40ccb1db4293bb99020137f84630d Mon Sep 17 00:00:00 2001 From: Tom Mount Date: Tue, 17 May 2022 11:44:56 -0400 Subject: [PATCH 1/2] update node version to match supported layer0 version --- .nvmrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.nvmrc b/.nvmrc index 49a625d6..958b5a36 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -v12.22.0 +v14 From 6c2a3c455700560984c2379e604ccc345f515631 Mon Sep 17 00:00:00 2001 From: Tom Mount Date: Tue, 17 May 2022 11:47:54 -0400 Subject: [PATCH 2/2] update workflows with old node version --- .github/workflows/publish.yml | 4 ++-- .github/workflows/test.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index e7bbf6fc..9f0835ed 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -11,7 +11,7 @@ jobs: - uses: actions/checkout@v1 - uses: actions/setup-node@v1 with: - node-version: 12 + node-version: 14 registry-url: https://registry.npmjs.org/ - name: Publish to npm run: | @@ -35,7 +35,7 @@ jobs: path: docs-repo - uses: actions/setup-node@v1 with: - node-version: 12 + node-version: 14 registry-url: https://registry.npmjs.org/ - name: Push API docs to GitHub Pages run: | diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2d70b022..cd98092c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,7 +8,7 @@ jobs: strategy: matrix: - node-version: [12.x] + node-version: [14.x] steps: - uses: actions/checkout@v2