Skip to content

Commit

Permalink
ci(workflow): linter (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
sam bacha authored Apr 1, 2021
1 parent 1523975 commit 37cdb23
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: linter

on:
push:

jobs:
build:
# Name the Job
name: Lint Code Base
# Set the agent to run on
runs-on: ubuntu-latest

steps:
- name: Checkout Code
uses: actions/checkout@v2
with:
# Full git history is needed to get a proper list of changed files within `super-linter`
fetch-depth: 0

- name: Lint Code Base
uses: github/super-linter@v3
env:
VALIDATE_ALL_CODEBASE: true
DEFAULT_BRANCH: master
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Empty file removed .github/workflows/nodejs.yml
Empty file.

0 comments on commit 37cdb23

Please sign in to comment.