Fix typo #104
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: Cucumber tests | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install modules | |
run: npm i | |
- name: Start test services | |
run: npm run test:prepare | |
- name: Run cucumber tests | |
run: npm run test:cucumber | |
- name: Run unit tests | |
run: npm run test:unit |