Skip to content

chore(deps): bump follow-redirects from 1.15.4 to 1.15.6 #213

chore(deps): bump follow-redirects from 1.15.4 to 1.15.6

chore(deps): bump follow-redirects from 1.15.4 to 1.15.6 #213

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Pull Request Check
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the main branch
pull_request:
branches:
- main
- beta
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: "20"
cache: "npm"
- run: npm ci
- name: Lint
run: npm run affected:lint -- --base=origin/${{ github.base_ref }}
- name: Test
run: npm run affected:test -- --base=origin/${{ github.base_ref }}
- name: Build
run: npm run affected:build -- --base=origin/${{ github.base_ref }}