Skip to content

Bump follow-redirects from 1.14.9 to 1.15.4 (#37) #113

Bump follow-redirects from 1.14.9 to 1.15.4 (#37)

Bump follow-redirects from 1.14.9 to 1.15.4 (#37) #113

Workflow file for this run

name: Node.js CI
on:
push:
branches:
- canary
- dev
pull_request:
branches:
- dev
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 18.x
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: npm ci
- name: Build
run: npm run build
- name: Test
run: |
npx playwright install --with-deps chromium
npm test