From 868fb4e7dd76f01d7395be5a7a53b88838f8f3a1 Mon Sep 17 00:00:00 2001 From: Ryan Lopopolo Date: Sun, 24 Dec 2023 15:48:39 -0500 Subject: [PATCH] Lock node version with nvm latest lts syntax in local dev and CI --- .github/workflows/ci.yaml | 5 +++++ .node-version | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index cd8c43a..9c4c093 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -163,6 +163,11 @@ jobs: - name: Checkout repository uses: actions/checkout@v4.1.1 + - name: Setup Node.js runtime + uses: actions/setup-node@v4.0.1 + with: + node-version: "lts/*" + - name: Install toolchain run: npm ci diff --git a/.node-version b/.node-version index a24992d..b009dfb 100644 --- a/.node-version +++ b/.node-version @@ -1 +1 @@ -lts +lts/*