Skip to content

chore(deps): update github actions #1256

chore(deps): update github actions

chore(deps): update github actions #1256

Workflow file for this run

name: Continuous Integration for Frontend
on:
push:
branches:
- main
pull_request:
branches:
- main
paths:
- ".github/workflows/ci-frontend.yaml"
- "ui/**"
env:
NODE_VERSION: 24
jobs:
build:
name: Build UI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7
with:
node-version: "${{ env.NODE_VERSION }}"
- name: Run install
uses: borales/actions-yarn@3766bb1335b98fb13c60eaf358fe20811b730a88 # v5
with:
cmd: install
dir: ui
- name: Run build
uses: borales/actions-yarn@3766bb1335b98fb13c60eaf358fe20811b730a88 # v5
with:
cmd: build
dir: ui
lint:
name: Lint TS
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7
with:
node-version: "${{ env.NODE_VERSION }}"
- name: Run install
uses: borales/actions-yarn@3766bb1335b98fb13c60eaf358fe20811b730a88 # v5
with:
cmd: install
dir: ui
- name: Run eslint
uses: borales/actions-yarn@3766bb1335b98fb13c60eaf358fe20811b730a88 # v5
with:
cmd: lint
dir: ui
- name: Run prettier
uses: borales/actions-yarn@3766bb1335b98fb13c60eaf358fe20811b730a88 # v5
with:
cmd: format-check
dir: ui