Skip to content

Bump semver from 5.7.1 to 5.7.2 #121

Bump semver from 5.7.1 to 5.7.2

Bump semver from 5.7.1 to 5.7.2 #121

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Cache Yarn
uses: actions/cache@v1
env:
cache-name: cache-yarn
with:
path: ~/.cache/yarn
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install dependencies
run: yarn
- name: Run tests
run: yarn test