Skip to content
Snippets Groups Projects
Select Git revision
  • 6f66eb2b735912802b6befbd745d2fb5adbf4aaf
  • main default
  • tp2
  • tp1
  • tp3
  • tp3-correction
  • tp2-correction
  • tp1-correction
  • admins
9 results

.gitlab-ci.yml

Blame
  • Forked from an inaccessible project.
    .gitlab-ci.yml 272 B
    image: node:16.0.0
    
    stages:
        - test
    
    variables:
        ADMIN_USERNAME: lej
        PORT: 3069
    
    job:estlint:
        stage: test
        script:
            - npm install eslint
            - npm run lint
    
    job:test-run:
        stage: test
        script:
            - npm install
            - npm run test