Skip to content

Merge pull request #14 from nmbrone/dependabot/npm_and_yarn/minimist-… #45

Merge pull request #14 from nmbrone/dependabot/npm_and_yarn/minimist-…

Merge pull request #14 from nmbrone/dependabot/npm_and_yarn/minimist-… #45

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