Skip to content

build(deps): bump semver from 5.7.1 to 5.7.2 #1417

build(deps): bump semver from 5.7.1 to 5.7.2

build(deps): bump semver from 5.7.1 to 5.7.2 #1417

Workflow file for this run

name: Tests
# Tests runs unit tests over the entire repository.
# This workflow is run on every pull request and push to main.
on:
pull_request:
push:
branches:
- master
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Compute diff 📜
uses: technote-space/get-diff-action@v6.1.2
id: git_diff
with:
PATTERNS: +(src|__tests__|**)/**/*.+(js|jsx|ts|tsx)
FILES: |
package.json
yarn.lock
- name: Install 🔨
if: env.GIT_DIFF
run: yarn install --immutable
- name: Run unit tests 🧪
if: env.GIT_DIFF
run: yarn test --coverage
- name: Run build check
if: env.GIT_DIFF
run: yarn build
- name: Run e2e tests
if: env.GIT_DIFF
uses: cypress-io/github-action@v2
with:
start: yarn start