Skip to content

Commit

Permalink
Merge pull request #10 from jongwooo/chore/create-lint-workflow
Browse files Browse the repository at this point in the history
chore: Create lint.yml
  • Loading branch information
jongwooo authored Jan 11, 2023
2 parents 4638570 + 7244e9e commit 158619d
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Lint Code Base

on: pull_request

jobs:
run-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Lint Code Base
uses: github/super-linter@v4
env:
VALIDATE_ALL_CODEBASE: false
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 158619d

Please sign in to comment.