Unit tests before push #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: GitHub Actions Demo | |
run-name: Unit tests before push | |
on: [push] | |
jobs: | |
front_end_tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Unit tests | |
run: echo "Running unit tests" | |
- name: Run unit tests | |
run: npm run test:unit |