Skip to content

Bump follow-redirects from 1.15.5 to 1.15.6 (#187) #398

Bump follow-redirects from 1.15.5 to 1.15.6 (#187)

Bump follow-redirects from 1.15.5 to 1.15.6 (#187) #398

Workflow file for this run

name: On Push
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 16.x
- run: yarn
- run: yarn lint
env:
CI: true
test-and-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 16.x
- run: yarn
- run: yarn build
- run: yarn test
test-building-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 16.x
- run: yarn
- run: yarn build
- run: yarn build:docs
test-examples:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 16.x
- run: yarn
- run: yarn build
- run: cd examples/api && yarn test:js
env:
DEPLOYMENT_ID: ${{ secrets.DEPLOYMENT_ID }}
REGION: ${{ secrets.REGION }}
- run: cd examples/api && yarn test:ts
env:
DEPLOYMENT_ID: ${{ secrets.DEPLOYMENT_ID }}
REGION: ${{ secrets.REGION }}
- run: cd examples/cli-scripted-tests && chmod +x ./run.sh && ./run.sh
env:
DEPLOYMENT_ID: ${{ secrets.DEPLOYMENT_ID }}
REGION: ${{ secrets.REGION }}