Skip to content

Bump semver from 5.7.1 to 5.7.2 #27

Bump semver from 5.7.1 to 5.7.2

Bump semver from 5.7.1 to 5.7.2 #27

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
test:
name: Test
runs-on: ubuntu-latest
env:
NODE_ENV: test
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Setup Node
uses: actions/setup-node@v1.4.4
with:
node-version: '12.x'
- name: Install yarn
run: npm install -g yarn
- name: Install dependencies
run: yarn install
- name: Run tests
run: yarn run test:unit