Advertisement
Guest User

Untitled

a guest
Oct 16th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. name: Test
  2.  
  3. on:
  4. push:
  5. branches:
  6. - master
  7.  
  8. jobs:
  9. build:
  10.  
  11. runs-on: ubuntu-18.04
  12.  
  13. strategy:
  14. matrix:
  15. node-version: [10.x]
  16.  
  17. steps:
  18. - uses: actions/checkout@v1
  19. - name: Use Node.js ${{ matrix.node-version }}
  20. uses: actions/setup-node@v1
  21. with:
  22. node-version: ${{ matrix.node-version }}
  23. - name: npm install and test
  24. run: |
  25. npm install
  26. npm test
  27. env:
  28. CI: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement