Skip to content

feat: update preset for new episode (#39) #64

feat: update preset for new episode (#39)

feat: update preset for new episode (#39) #64

Workflow file for this run

name: Lint Code Base
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
name: Lint Code Base
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
# Run Linter against code base #
- name: Lint Code Base
uses: github/super-linter@v4
env:
VALIDATE_ALL_CODEBASE: false
DEFAULT_BRANCH: main
# GITHUB_TOKEN is need by GitHub Super-Linter as it will mark the status of each individual linter run in the Checks section of a pull request.
# Without this you will only see the overall status of the full run.
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}