Skip to content

Bump semver from 6.3.0 to 6.3.1 #21

Bump semver from 6.3.0 to 6.3.1

Bump semver from 6.3.0 to 6.3.1 #21

Workflow file for this run

name: ci
on: push
jobs:
jest:
name: jest
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-modules-
- name: Setup NodeJS
uses: actions/setup-node@v2
with:
node-version: 14.17.x
- name: Install Yarn Dependencies
run: yarn install --frozen-lockfile
- name: Yarn Jest
run: yarn test