diff options
-rw-r--r-- | .github/workflows/ci.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ff51816c..ed4dd895 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -73,10 +73,10 @@ jobs: timeout-minutes: 15 steps: - uses: actions/checkout@v4 - - name: Setup Node.JS 18 - uses: actions/setup-node@v3 + - name: Setup Node.JS 20 + uses: actions/setup-node@v4 with: - node-version: "18" + node-version: "20" - run: npm ci - run: npm run vnext:test - run: npm run vnext:lint |