Skip to content
Snippets Groups Projects
Select Git revision
  • 92d6d48acc9f6814795afa36f560f8e29ad89755
  • master default
2 results

.gitignore

Blame
  • .gitlab-ci.yml 221 B
    image: node:14.6.0
    
    stages:
        - test
    
    job:estlint:
        stage: test
        script:
            - npm install eslint
            - npm run lint
    
    job:test-run:
        stage: test
        script:
            - npm install
            - npm run test