Skip to content

Bump semver from 5.7.1 to 5.7.2 (#437) #192

Bump semver from 5.7.1 to 5.7.2 (#437)

Bump semver from 5.7.1 to 5.7.2 (#437) #192

Workflow file for this run

name: CI
on: [push, pull_request_target]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: 12
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v1
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install modules
run: yarn --pure-lockfile
- name: Run tests
run: yarn test