Skip to content

chore(deps): bump follow-redirects from 1.15.2 to 1.15.4 #78

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

chore(deps): bump follow-redirects from 1.15.2 to 1.15.4 #78

Workflow file for this run

name: Continuous Integration
on:
pull_request:
branches:
- master
jobs:
main:
name: Build & Test
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [14.x, 16.x, 18.x]
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: corepack enable
# Required for yarn, when run via act locally
- name: Install Dependencies
run: yarn install
- name: Lint Commit Message
run: |
echo $(git log -1 --pretty=format:"%s") | yarn commitlint
- name: Build
run: yarn build
- name: Test
run: yarn test