Skip to content

Docs: 리드미 파일 해커톤 참여 명세 #77

Docs: 리드미 파일 해커톤 참여 명세

Docs: 리드미 파일 해커톤 참여 명세 #77

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