Skip to content

Add cookiecutter and design-builder links #65

Add cookiecutter and design-builder links

Add cookiecutter and design-builder links #65

Workflow file for this run

---
name: "Lint"
on: # yamllint disable-line rule:truthy rule:comments
- "push"
- "pull_request"
jobs:
build:
name: Lint Everything
runs-on: ubuntu-latest
steps:
##########################
# Checkout the code base #
##########################
- name: Checkout Code
uses: actions/checkout@v3
with:
# Full git history is needed to get a proper list of changed files within `super-linter`
fetch-depth: 0
################################
# Run Linter against code base #
################################
- name: Lint Code Base
uses: github/super-linter/slim@v4
env:
VALIDATE_ALL_CODEBASE: false
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}