Skip to content

Bump follow-redirects from 1.15.5 to 1.15.6 #59

Bump follow-redirects from 1.15.5 to 1.15.6

Bump follow-redirects from 1.15.5 to 1.15.6 #59

Workflow file for this run

name: Checks
on:
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '20'
cache: 'yarn'
- name: Install dependencies
run: yarn install
- name: Run Lint
run: yarn lint
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '20'
cache: 'yarn'
- name: Install dependencies
run: yarn install
- name: Run build
run: yarn build