From 3238979cd3a709fe2d20f4f4fe9e0d105fb5e743 Mon Sep 17 00:00:00 2001 From: neil Date: Mon, 2 Jan 2023 14:26:49 +0800 Subject: [PATCH] node 18 --- .github/workflows/ci.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 43091e6..cb0e0db 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -133,18 +133,19 @@ jobs: - uses: actions/checkout@v2 - uses: pnpm/action-setup@v2 with: - version: 7.18.2 - run_install: true + version: 7 - name: setup node - uses: actions/setup-node@v2 + uses: actions/setup-node@v1 with: - node-version: 16 + node-version: 18 cache: 'pnpm' cache-dependency-path: pnpm-lock.yaml - name: install Rust stable uses: actions-rs/toolchain@v1 with: toolchain: stable + - name: install app dependencies + run: pnpm install - name: install dependencies (ubuntu only) if: matrix.platform.name == 'linux+x86-64'