Migrates to using yarn over npm

This commit is contained in:
James Ives 2020-05-16 18:19:08 -04:00
parent 9601af754e
commit f1da4c7be1

View File

@ -16,11 +16,14 @@ jobs:
- name: Checkout
uses: actions/checkout@v1
- name: Install Yarn
run: npm install -g yarn
- name: Install and Test
run: |
npm install
npm run-script lint
npm run-script test
yarn install
yarn lint
yarn test
- name: Uploade CodeCov Report
uses: codecov/codecov-action@v1