Skip to content

Merge pull request #28 from anvilco/dependabot/npm_and_yarn/babel/tra… #36

Merge pull request #28 from anvilco/dependabot/npm_and_yarn/babel/tra…

Merge pull request #28 from anvilco/dependabot/npm_and_yarn/babel/tra… #36

Workflow file for this run

name: Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
id: yarn-cache
with:
path: node_modules
key: v1-${{ hashFiles('./yarn.lock') }}
restore-keys: |
v1-
- name: Install dependencies
if: steps.yarn-cache.outputs.cache-hit != 'true'
run: yarn install
- name: Run Tests
run: yarn test