Skip to content

Fix: 배포환경에서의 Proxy 설정11 #53

Fix: 배포환경에서의 Proxy 설정11

Fix: 배포환경에서의 Proxy 설정11 #53

Workflow file for this run

name: Node.js CI
on:
push:
branches:
- dev
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Use Node.js 18.7.0
uses: actions/setup-node@v2
with:
node-version: '18.7.0'
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Config Github Setting
run: |
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
- name: Push to main
if: success()
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: main
force: true
atomic: true