Skip to content

Enable full gateway exec access for desktop config sync #24

Enable full gateway exec access for desktop config sync

Enable full gateway exec access for desktop config sync #24

Workflow file for this run

name: CI
on:
pull_request:
branches: [main, master]
push:
branches: [main, master]
jobs:
quality:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Typecheck (advisory)
run: npm run typecheck
continue-on-error: true
- name: Test
run: npm run test
- name: LOC policy
run: npm run check:loc