Skip to content

Merge pull request #9 from nmbrone/dependabot/npm_and_yarn/jsdom-16.7.0 #56

Merge pull request #9 from nmbrone/dependabot/npm_and_yarn/jsdom-16.7.0

Merge pull request #9 from nmbrone/dependabot/npm_and_yarn/jsdom-16.7.0 #56

Workflow file for this run

name: Tests
on: 'push'
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: '12.x'
- uses: actions/cache@v1
with:
path: ~/.cache/yarn
key: ${{ runner.os }}-yarn-${{ hashFiles(format('{0}{1}', github.workspace, '/yarn.lock')) }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install Dependencies
run: yarn install
- name: Run Tests
run: yarn test
env:
FORCE_COLOR: 1 # force chalk to output colors