Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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.

test.yml 384B

123456789101112131415161718
  1. name: Test Changes
  2. on: [push, pull_request]
  3. jobs:
  4. test:
  5. runs-on: ubuntu-latest
  6. steps:
  7. - name: Clone Repository
  8. uses: actions/checkout@v2
  9. - name: Setup Node version
  10. uses: actions/setup-node@v1
  11. with:
  12. node-version: 14
  13. - name: Install dependencies
  14. run: npm install
  15. - name: Run tests
  16. run: npm run cover