From 89227b5b91a4cbda38180897c5a6217afdcebbaf Mon Sep 17 00:00:00 2001 From: Francesc Rosas Date: Mon, 29 Apr 2024 11:44:14 +0100 Subject: [PATCH] setup-node GitHub Action to use .nvmrc --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ab882a9f..8b80ae16 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,6 +7,6 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: "20.12.2" + node-version-file: ".nvmrc" - run: npm ci - run: npm test