Skip to content
Extraits de code Groupes Projets
Sélectionner une révision Git
  • 158f546f90a63687a8023a2381144c1447572b6d
  • master par défaut protégée
  • rust-playlist-sync
  • rust
  • fix-qt-deprecated-qvariant-type
  • fix-mpris-qtwindow-race-condition
  • rust-appimage-wayland
  • windows-build-rebased
  • v2.5 protégée
  • v2.4 protégée
  • v2.3-1 protégée
  • v2.3 protégée
  • v2.2 protégée
  • v2.1 protégée
  • v2.0 protégée
  • v1.8-3 protégée
  • v1.8-2 protégée
  • v1.8-1 protégée
  • v1.8 protégée
  • v1.7 protégée
  • v1.6 protégée
  • v1.5 protégée
  • v1.4 protégée
  • v1.3 protégée
  • v1.2 protégée
  • v1.1 protégée
  • v1.0 protégée
27 résultats

Makefile.in

Blame
  • .gitlab-ci.yml 548 o
    stages:
      - build
      - test
    
    # This folder is cached between builds
    # https://docs.gitlab.com/ee/ci/yaml/index.html#cache
    cache:
      paths:
        - node_modules/
    
    .pnpm:
      image: node:20
      before_script:
        - corepack enable
        - pnpm install
        # Check for dependencies issues
        - pnpm install --resolution-only --no-frozen-lockfile
    
    build:
      stage: build
      extends: .pnpm
      script:
        - pnpm build
    
    lint:
      stage: test
      extends: .pnpm
      script:
        - pnpm lint
    
    check:
      stage: test
      extends: .pnpm
      script:
        - pnpm build
        - pnpm check