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.

26 lines
519 B

4 years ago
4 years ago
  1. name: Test
  2. on:
  3. push:
  4. branches: [ '*' ]
  5. pull_request:
  6. branches: [ '*' ]
  7. jobs:
  8. build:
  9. runs-on: ubuntu-latest
  10. strategy:
  11. matrix:
  12. node-version: [ 10.x ]
  13. steps:
  14. - name: Checkout code
  15. uses: actions/checkout@v2
  16. - name: Use Nodejs
  17. uses: actions/setup-node@v1
  18. - name: Install node_modules
  19. run: npm install
  20. - name: Execute tests
  21. run: |
  22. sh ./test-compile-circuits.sh
  23. npm run test
  24. npm run test-circuits
  25. npm run test-sc