Skip to content

Bump follow-redirects from 1.15.4 to 1.15.6 (#995) #1196

Bump follow-redirects from 1.15.4 to 1.15.6 (#995)

Bump follow-redirects from 1.15.4 to 1.15.6 (#995) #1196

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- '*'
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: 'npm'
- name: Install
run: npm install
- name: lint
run: npm run lint
test_bundle:
name: Test production
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: 'npm'
- name: Install
run: npm install
- name: Build
run: npm run build
- name: Build test app
run: npm run build:test
- name: Run tests
run: npm run test:standalone
test_prettier_v2:
name: Prettier V2
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: 'npm'
- name: Install
run: npm install
- name: Build with Prettier V3
run: npm run build
- name: Downgrade Prettier to V2
run: npm install prettier@2.8.8
- name: Build test app
run: npm run build:test
- name: Run standalone tests
run: npm run test:standalone tests/format tests/integration tests/unit/prettier-version
test_linux:
name: Test on Linux with Node ${{ matrix.node }}
runs-on: ubuntu-latest
strategy:
matrix:
node: [16, 18, 20]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- name: Install
run: npm install
- name: Run tests
run: npm run test:all
test_macos:
name: Test on MacOS with Node 16
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: 'npm'
- name: Install
run: npm install
- name: Run tests
run: npm run test:all
test_windows:
name: Test on Windows with Node 16
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: 'npm'
- name: Install
run: npm install
- name: Run tests
run: npm run test:all