Skip to content

PATCH: Bump semver from 5.6.0 to 5.7.2 #161

PATCH: Bump semver from 5.6.0 to 5.7.2

PATCH: Bump semver from 5.6.0 to 5.7.2 #161

Workflow file for this run

# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Pull Request CI
on:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 16.x
uses: actions/setup-node@v2
with:
node-version: 16.x
cache: "yarn"
- run: yarn install --frozen-lockfile
- run: yarn lint
- run: yarn test --coverage