From d2dbb29e4bfd0ab3b5e11dd3ccf4b12b6df94b65 Mon Sep 17 00:00:00 2001 From: Lewis Goddard Date: Wed, 6 Mar 2024 21:15:43 +0000 Subject: [PATCH] Update normal.yml --- .github/workflows/normal.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/normal.yml b/.github/workflows/normal.yml index cb4e90b..9dc79bb 100644 --- a/.github/workflows/normal.yml +++ b/.github/workflows/normal.yml @@ -23,7 +23,15 @@ jobs: - name: Install Node.js uses: actions/setup-node@v3 with: - node-version: "12.x" + # Version Spec of the version to use in SemVer notation. + # It also emits such aliases as lts, latest, nightly and canary builds + # Examples: 12.x, 10.15.1, >=10.15.0, lts/Hydrogen, 16-nightly, latest, node + node-version: 'lts/*' + # Set this option if you want the action to check for the latest available version + # that satisfies the version spec. + # It will only get affect for lts Nodejs versions (12.x, >=10.15.0, lts/Hydrogen). + # Default: false + check-latest: true - name: Checkout Repo uses: actions/checkout@v3