From cdab7633a440ca99a483b525d8ab947232166439 Mon Sep 17 00:00:00 2001 From: Razzwan Date: Mon, 13 Nov 2023 21:05:06 +0300 Subject: [PATCH] docs(github): workflows --- .github/workflows/static.yml | 4 ++-- .github/workflows/tests.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index 8518096..367a362 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -33,10 +33,10 @@ jobs: - name: Checkout uses: actions/checkout@v3 - - name: Use Node.js 16.x + - name: Use Node.js 18.x uses: actions/setup-node@v3 with: - node-version: 16.x + node-version: 18.x - name: Install Dependencies and Build working-directory: './demo' run: npm install && npm run build diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ca42dbe..ee13263 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -15,10 +15,10 @@ jobs: # This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits fetch-depth: 0 - - name: Use Node.js 16.x + - name: Use Node.js 18.x uses: actions/setup-node@v3 with: - node-version: 16.x + node-version: 18.x - name: Install Dependencies run: npm install