From 61853e22e9ff03c11f91923fe83f29c71b662789 Mon Sep 17 00:00:00 2001 From: Jerome Wu Date: Sun, 23 Jul 2023 16:10:40 +0800 Subject: [PATCH] Update CI scripts --- .github/workflows/CI.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index e0430d8..4703732 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -74,10 +74,10 @@ jobs: with: name: ffmpeg-core-mt path: packages/core-mt/dist - - name: Use Node.js 16 + - name: Use Node.js 18 uses: actions/setup-node@v3 with: - node-version: 16.x + node-version: 18.x - name: Cache dependencies id: cache-dependencies uses: actions/cache@v3 @@ -88,6 +88,6 @@ jobs: restore-keys: | node-modules- - name: Install dependencies - run: npx lerna bootstrap + run: npx install - name: Run tests run: npm test