Skip to content

Add desktop ZIP archive preflight #4

Add desktop ZIP archive preflight

Add desktop ZIP archive preflight #4

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
jobs:
check:
name: Static checks
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 24
cache: npm
- name: Install dependencies
run: npm ci --ignore-scripts
- name: Run checks
run: npm run check
- name: Install smoke browser
run: npx playwright install --with-deps chromium
- name: Run browser smoke test
run: npm run test:smoke