From 413058da8fa25304ef065fe119fd4cee4e2e538b Mon Sep 17 00:00:00 2001 From: Balbina K <41303231+BalbinaK@users.noreply.github.com> Date: Mon, 12 Jun 2023 09:52:12 +0200 Subject: [PATCH] fix(workflows): set node v to lts/* and pnpm to 8 (#118) --- .github/workflows/lint.pr.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- .github/workflows/test.js.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/lint.pr.yml b/.github/workflows/lint.pr.yml index 297a94c..5753c8c 100644 --- a/.github/workflows/lint.pr.yml +++ b/.github/workflows/lint.pr.yml @@ -11,11 +11,11 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v3 with: - node-version: current + node-version: lts/* - name: Install pnpm and dependencies uses: pnpm/action-setup@v2 with: - version: 7 + version: 8 run_install: true - name: Lint run: pnpm lint:check diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cb0bcc1..e49142b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,11 +16,11 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v3 with: - node-version: current + node-version: lts/* - name: Install pnpm and dependencies uses: pnpm/action-setup@v2 with: - version: 7 + version: 8 run_install: true - name: Test run: pnpm test diff --git a/.github/workflows/test.js.yml b/.github/workflows/test.js.yml index c7d5d50..8d57acf 100644 --- a/.github/workflows/test.js.yml +++ b/.github/workflows/test.js.yml @@ -11,11 +11,11 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v3 with: - node-version: current + node-version: lts/* - name: Install pnpm and dependencies uses: pnpm/action-setup@v2 with: - version: 7 + version: 8 run_install: true - name: Test and build run: |