Skip to content

chore(deps): bump actions/checkout from 6 to 7 #99

chore(deps): bump actions/checkout from 6 to 7

chore(deps): bump actions/checkout from 6 to 7 #99

Workflow file for this run

name: PR Check
on:
pull_request:
types: [opened, edited, synchronize]
permissions:
contents: read
actions: read
security-events: write
jobs:
ui-build:
name: UI Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v6
with:
node-version: "22"
cache: "npm"
cache-dependency-path: ui/package-lock.json
- name: Install dependencies
working-directory: ui
run: npm ci
- name: Type check & build
working-directory: ui
run: npm run build
check:
uses: huseyinbabal/rust-actions/.github/workflows/pr-check.yml@main
with:
check_issue_link: true
run_tests: true
run_fmt: true
run_clippy: true
run_security_scan: true