Skip to content

Bump @fortawesome/fontawesome-free from 6.6.0 to 6.7.0 #593

Bump @fortawesome/fontawesome-free from 6.6.0 to 6.7.0

Bump @fortawesome/fontawesome-free from 6.6.0 to 6.7.0 #593

Workflow file for this run

---
#################################
#################################
## Super Linter GitHub Actions ##
#################################
#################################
name: Lint Code Base
#
# Documentation:
# https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions
#
#############################
# Start the job on all push #
#############################
on:
push:
pull_request:
branches: [main]
###############
# Set the Job #
###############
jobs:
build:
# Name the Job
name: Lint Code Base
# Set the agent to run on
runs-on: ubuntu-latest
##################
# Load all steps #
##################
steps:
##########################
# Checkout the code base #
##########################
- name: Checkout Code
uses: actions/checkout@v4
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: super-linter/super-linter/slim@v7
env:
VALIDATE_ALL_CODEBASE: true
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
LINTER_RULES_PATH: /
VALIDATE_CSS: true
CSS_FILE_NAME: .stylelintrc.json
VALIDATE_HTML: true
VALIDATE_JSON: true
# JAVASCRIPT_STANDARD won't work with .ts files
# Some more typing of third party stuff is required before we pass ts-standard runs, disabled for now
#VALIDATE_TYPESCRIPT_STANDARD: true
VALIDATE_GITHUB_ACTIONS: true