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.

tests.yml 648B

12345678910111213141516171819202122232425262728
  1. name: Tests
  2. on: [push, pull_request]
  3. jobs:
  4. build:
  5. runs-on: ubuntu-latest
  6. strategy:
  7. matrix:
  8. node-version: [8.x, 10.x, 12.x, 14.x, 15.x]
  9. steps:
  10. - uses: actions/checkout@v2
  11. - name: Use Node.js ${{ matrix.node-version }}
  12. uses: actions/setup-node@v2
  13. with:
  14. node-version: ${{ matrix.node-version }}
  15. - uses: actions/cache@v2
  16. with:
  17. path: ~/.npm
  18. key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
  19. restore-keys: |
  20. ${{ runner.os }}-node-
  21. - run: npm install
  22. - run: npm test
  23. env:
  24. CI: true