From 8a9fee1d1372beff1db7870feab11c418fcf701a Mon Sep 17 00:00:00 2001 From: Adam Shiervani Date: Wed, 21 May 2025 12:57:45 +0200 Subject: [PATCH] chore: update UI lint workflow configuration - Add pull_request trigger to the workflow. - Change runner from buildjet-4vcpu-ubuntu-2204 to ubuntu-latest. - Upgrade Node.js version from v21.1.0 to v22.15.0. --- .github/workflows/ui-lint.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ui-lint.yml b/.github/workflows/ui-lint.yml index 492a5fe..31e9854 100644 --- a/.github/workflows/ui-lint.yml +++ b/.github/workflows/ui-lint.yml @@ -7,21 +7,23 @@ on: - "package.json" - "package-lock.json" - ".github/workflows/ui-lint.yml" + pull_request: permissions: contents: read + pull-requests: read 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: v22.15.0 cache: "npm" cache-dependency-path: "ui/package-lock.json" - name: Install dependencies