Skip to content
Snippets Groups Projects
Select Git revision
  • f85721ccc2b57efc5c9622e9d14794f5ab340ec8
  • main default
2 results

.gitlab-ci.yml

Blame
  • Forked from an inaccessible project.
    .gitlab-ci.yml 272 B
    image: node:16.4.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