From c11049c27d65423fa70ce7cf24ea41263d84dd45 Mon Sep 17 00:00:00 2001 From: Philip Harrison Date: Tue, 9 May 2023 15:51:55 +0100 Subject: [PATCH] Update to node 18.x NodeJS 18.x is now LTS so we should update the default in the readme to get more of this in the wild and less of node 16.x which is on npm 8.x. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 732b0483c..362bd89da 100644 --- a/README.md +++ b/README.md @@ -86,7 +86,7 @@ steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 - run: npm ci - run: npm test ```