Skip to content

Bump follow-redirects from 1.14.9 to 1.15.6 #30

Bump follow-redirects from 1.14.9 to 1.15.6

Bump follow-redirects from 1.14.9 to 1.15.6 #30

Workflow file for this run

name: GitHub Pages
on:
push:
branches:
- master # Set a branch name to trigger deployment
pull_request:
jobs:
deploy:
runs-on: ubuntu-20.04
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v3
- name: Use Node.js 14.x
uses: actions/setup-node@v3
with:
node-version: 14.x
cache: 'npm'
- run: cp .env.example .env
- run: bash run_for_gh-pages.sh
- run: npm install
- run: npm run build
# - run: npm test
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/master' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public