You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ci.yml 420B

123456789101112131415161718
  1. name: Simple CI
  2. on: [pull_request]
  3. jobs:
  4. run-ci:
  5. name: Build Frontend
  6. runs-on: ubuntu-latest
  7. steps:
  8. - uses: actions/checkout@v2
  9. - uses: actions/setup-node@v1
  10. with:
  11. node-version: '12.x'
  12. - run: npm install
  13. - name: Check if the git repository is clean
  14. run: exit $( git status --porcelain --untracked-files=no | head -255 | wc -l )
  15. - run: npm run lint
  16. - run: make