Skip to content

build(deps): Bump follow-redirects from 1.15.2 to 1.15.4 #70

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 #70

Workflow file for this run

name: Build and Test Library Code
on:
push:
pull_request:
jobs:
run-checks:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 16.14.2
cache: 'yarn'
- name: Install dependencies
run: |
yarn install --frozen-lockfile
- name: Compile
run: yarn compile
- name: Lint
run: yarn lint
- name: Test
run: yarn test
- name: Prettier formatting check
run: yarn prettier:check