Merge pull request #5 from nib-health-funds/v2 #19
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: Lint Test | |
on: [push] | |
jobs: | |
Lint-And-Test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v2 | |
- name: Lint and test | |
run: | | |
npm install | |
npm run lint | |
npm run test | |
- run: echo "Winner winner 🐓 dinner" |