diff options
author | Nick Schonning <nschonni@gmail.com> | 2023-02-15 20:24:05 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-16 10:24:05 +0900 |
commit | 1f957c63253059e957231759fb6a7697b0a1f1b3 (patch) | |
tree | 260ceba6d94927d6300341e2f0c4672ae3653a3d | |
parent | 630975bf415e999717a11db859c5fa2760492f4a (diff) |
Use .nvmrc file for CI setup-node (#23562)
-rw-r--r-- | .github/workflows/lint-css.yml | 1 | ||||
-rw-r--r-- | .github/workflows/lint-js.yml | 1 | ||||
-rw-r--r-- | .github/workflows/lint-json.yml | 1 | ||||
-rw-r--r-- | .github/workflows/lint-yml.yml | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/lint-css.yml b/.github/workflows/lint-css.yml index 431b88e8d..e2571296a 100644 --- a/.github/workflows/lint-css.yml +++ b/.github/workflows/lint-css.yml @@ -36,6 +36,7 @@ jobs: uses: actions/setup-node@v3 with: cache: yarn + node-version-file: '.nvmrc' - name: Install all yarn packages run: yarn --frozen-lockfile diff --git a/.github/workflows/lint-js.yml b/.github/workflows/lint-js.yml index 49d989771..c349f269d 100644 --- a/.github/workflows/lint-js.yml +++ b/.github/workflows/lint-js.yml @@ -32,6 +32,7 @@ jobs: uses: actions/setup-node@v3 with: cache: yarn + node-version-file: '.nvmrc' - name: Install all yarn packages run: yarn --frozen-lockfile diff --git a/.github/workflows/lint-json.yml b/.github/workflows/lint-json.yml index 524ed083a..b89d0a0f7 100644 --- a/.github/workflows/lint-json.yml +++ b/.github/workflows/lint-json.yml @@ -32,6 +32,7 @@ jobs: uses: actions/setup-node@v3 with: cache: yarn + node-version-file: '.nvmrc' - name: Install all yarn packages run: yarn --frozen-lockfile diff --git a/.github/workflows/lint-yml.yml b/.github/workflows/lint-yml.yml index 48f8170b3..6865d73dd 100644 --- a/.github/workflows/lint-yml.yml +++ b/.github/workflows/lint-yml.yml @@ -34,6 +34,7 @@ jobs: uses: actions/setup-node@v3 with: cache: yarn + node-version-file: '.nvmrc' - name: Install all yarn packages run: yarn --frozen-lockfile |