Skip to content

feat(configuration/git): add SSH authentication documentation #218

feat(configuration/git): add SSH authentication documentation

feat(configuration/git): add SSH authentication documentation #218

Workflow file for this run

name: CI
on:
- pull_request
jobs:
format:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
cache: yarn
- name: Install Dependencies
run: yarn --frozen-lockfile
- name: Format
run: yarn format
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "chore: format code"
lint:
needs: format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
cache: yarn
- name: Install Dependencies
run: yarn --frozen-lockfile
- name: Lint
run: yarn lint