Brak opisu

nodejs.yml 413B

1234567891011121314151617181920212223
  1. name: Node CI
  2. on:
  3. push:
  4. branches:
  5. - master
  6. jobs:
  7. build:
  8. runs-on: ubuntu-latest
  9. steps:
  10. - uses: actions/checkout@v1
  11. - name: Use Node.js 10.x
  12. uses: actions/setup-node@v1
  13. with:
  14. node-version: 10.x
  15. - name: Install yarn
  16. run: npm install -g yarn
  17. - name: Install dependencies
  18. run: yarn install
  19. - name: Run tests
  20. run: yarn workspaces run test