Skip to content

Bump follow-redirects from 1.15.2 to 1.15.4 in /newsfeed #366

Bump follow-redirects from 1.15.2 to 1.15.4 in /newsfeed

Bump follow-redirects from 1.15.2 to 1.15.4 in /newsfeed #366

Workflow file for this run

# Copyright (c) Facebook, Inc. and its affiliates.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
name: CI
on: [push, pull_request]
jobs:
build:
name: Tests (Node ${{ matrix.node-version }})
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install watchman
run: |
mkdir watchman
cd watchman
curl -L -O 'https://github.com/facebook/watchman/releases/download/v2021.05.24.00/watchman-v2021.05.24.00-linux.zip'
unzip watchman-v2021.05.24.00-linux.zip
cd watchman-v2021.05.24.00-linux
sudo mkdir -p /usr/local/{bin,lib} /usr/local/var/run/watchman
sudo cp bin/* /usr/local/bin
sudo cp lib/* /usr/local/lib
sudo chmod 755 /usr/local/bin/watchman
sudo chmod 2777 /usr/local/var/run/watchman
- name: yarn install (todo)
working-directory: todo
run: yarn install --frozen-lockfile
- name: lint (todo)
working-directory: todo
run: yarn run lint
- name: Update schema (todo)
working-directory: todo
run: yarn run update-schema
- name: Yarn build (todo)
working-directory: todo
run: yarn run build
- name: flow (todo)
working-directory: todo
run: yarn run flow