From 4efb9904ab3b6d8bd41c31002b161bfc2f1af9be Mon Sep 17 00:00:00 2001 From: Carter Green Date: Mon, 20 Jun 2022 17:41:07 -0500 Subject: [PATCH] Use Node 18 in CI --- .github/workflows/ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4b1fd67f..d70c150f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -71,8 +71,13 @@ jobs: with: command: run args: --bin gen_contracts + - name: Install NPM + uses: actions/setup-node@v3 + with: + node-version: 18.3 + - run: npm --version - name: Install - run: npm ci --dev + run: npm ci --include=dev - name: Build run: npm run build - name: Test