Skip to content

build(deps): bump follow-redirects from 1.15.2 to 1.15.4 #76

build(deps): bump follow-redirects from 1.15.2 to 1.15.4

build(deps): bump follow-redirects from 1.15.2 to 1.15.4 #76

Workflow file for this run

# Workflow name
name: 'Tests'
# Event for the workflow
# Triggers the workflow on push or pull request events but only for the development branch
on:
pull_request:
types: [opened, reopened, ready_for_review, synchronize]
branches:
- main
- staging
- develop
# List of jobs
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.16.1
- name: Install modules
run: yarn
- name: Generate types
run: yarn types-gen
- name: Run jest unit tests
run: yarn test