From 9855acf09ca4edc27397c98cf65130618d4292a3 Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Sat, 16 Apr 2022 19:20:44 -0700 Subject: [PATCH] CI: use Node.js LTS for E2E --- .github/workflows/test-macos.yml | 6 +++--- .github/workflows/test-ubuntu.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test-macos.yml b/.github/workflows/test-macos.yml index 00a2ef83..63bd39d1 100644 --- a/.github/workflows/test-macos.yml +++ b/.github/workflows/test-macos.yml @@ -51,10 +51,10 @@ jobs: run: | git clone --depth 1 --branch master https://github.com/jesec/flood.git . - - name: Use Node.js 15 - uses: actions/setup-node@v1 + - name: Use Node.js LTS + uses: actions/setup-node@v3 with: - node-version: 15 + node-version: lts/* - run: npm ci --no-optional - run: npm run build diff --git a/.github/workflows/test-ubuntu.yml b/.github/workflows/test-ubuntu.yml index 6b0b175c..9c2936e4 100644 --- a/.github/workflows/test-ubuntu.yml +++ b/.github/workflows/test-ubuntu.yml @@ -116,10 +116,10 @@ jobs: run: | git clone --depth 1 --branch master https://github.com/jesec/flood.git . - - name: Use Node.js 15 - uses: actions/setup-node@v1 + - name: Use Node.js LTS + uses: actions/setup-node@v3 with: - node-version: 15 + node-version: lts/* - run: npm ci --no-optional - run: npm run build