Skip to content

build(deps): bump follow-redirects from 1.15.2 to 1.15.4 #436

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

build(deps): bump follow-redirects from 1.15.2 to 1.15.4 #436

Workflow file for this run

name: GH Pages Deploy
on:
push:
branches: [master]
paths-ignore:
- "**.md"
pull_request:
branches: [master]
paths-ignore:
- "**.md"
jobs:
build-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout πŸ›ŽοΈ
uses: actions/checkout@master
with:
persist-credentials: false
- name: Set up Node.js βš™οΈ
uses: actions/setup-node@v2
with:
node-version: '16'
- name: Get Yarn cache directory πŸ“¦
id: yarn-cache-dir
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Cache packages πŸ“¦
uses: actions/cache@v2
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: ${{ runner.os }}-yarn-
- name: Install packages πŸ”§
run: yarn install --frozen-lockfile
- name: Lint 🧐
run: yarn lint:check
- name: Test 🚨
run: yarn test:unit
- name: Build πŸ—οΈ
run: yarn build
env:
NODE_ENV: production
- name: Deploy to GH Pages πŸš€
if: ${{ github.event_name != 'pull_request' }}
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: dist
keep_files: true