Skip to content
This repository has been archived by the owner on Mar 29, 2024. It is now read-only.

Bump follow-redirects from 1.15.2 to 1.15.5 #15

Bump follow-redirects from 1.15.2 to 1.15.5

Bump follow-redirects from 1.15.2 to 1.15.5 #15

Workflow file for this run

name: CI
on:
pull_request:
branches: [ "main" ]
jobs:
check-change-files:
runs-on: ubuntu-latest
name: Build and run lint
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Test
run: npm run test