From 842ed39ac209463638caa86f001e670f19f959bb Mon Sep 17 00:00:00 2001 From: Marc Brooks Date: Tue, 24 Jun 2025 16:06:01 -0500 Subject: [PATCH] Move to GitHub runner for build action Lint action --- .github/workflows/build.yml | 4 ++-- .github/workflows/ui-lint.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c7cbb22..c149b87 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,9 +10,9 @@ on: jobs: build: - runs-on: buildjet-4vcpu-ubuntu-2204 + runs-on: ubuntu-latest name: Build - if: "github.event.review.state == 'approved' || github.event.event_type != 'pull_request_review'" + if: github.event_name != 'pull_request_review' || github.event.review.state == 'approved' steps: - name: Checkout uses: actions/checkout@v4 diff --git a/.github/workflows/ui-lint.yml b/.github/workflows/ui-lint.yml index 492a5fe..ad002fc 100644 --- a/.github/workflows/ui-lint.yml +++ b/.github/workflows/ui-lint.yml @@ -14,16 +14,16 @@ permissions: jobs: ui-lint: name: UI Lint - runs-on: buildjet-4vcpu-ubuntu-2204 + runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v4 - name: Set up Node.js uses: actions/setup-node@v4 with: - node-version: v21.1.0 + node-version: "22" cache: "npm" - cache-dependency-path: "ui/package-lock.json" + cache-dependency-path: "**/package-lock.json" - name: Install dependencies run: | cd ui