fix: php wrong version, adapted for sail #251
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: VueJs CI | |
on: | |
push: | |
defaults: | |
run: | |
working-directory: ./frontend | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run Vuejs installation | |
run: npm ci | |
- name: Run Vuejs Build | |
run: npm run build | |
- name: Run Vuejs unit test | |
run: npm run test:unit | |
- name: Run VueJS Linter | |
run: npm run lint |