Skip to content

Merge pull request #64 from ironhack-labs/uros/feat/update-starter-co… #17

Merge pull request #64 from ironhack-labs/uros/feat/update-starter-co…

Merge pull request #64 from ironhack-labs/uros/feat/update-starter-co… #17

Workflow file for this run

name: Automated Testing
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Load code
uses: actions/checkout@v2
- name: Prepare environment
uses: actions/setup-node@v2
with:
node-version: '14'
check-latest: true
- name: Install dependencies
run: npm i
- name: Run tests
run: npm run test -- --ci --reporters=default --reporters=jest-junit
- name: Reports the results of tests
uses: IgnusG/[email protected]
if: always()
with:
access-token: ${{ secrets.GITHUB_TOKEN }}
run-name: test