Skip to content

Update products.json (#34) #116

Update products.json (#34)

Update products.json (#34) #116

Workflow file for this run

name: Lint
permissions:
contents: read
packages: read
statuses: write
on:
push:
branches:
- main
pull_request: null
jobs:
build:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 'latest'
- name: Install Prettier and Astro plugin
run: |
npm install --no-save prettier prettier-plugin-astro
- name: Super-linter
uses: super-linter/super-linter@v7
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VALIDATE_ALL_CODEBASE: false
FILTER_REGEX_EXCLUDE: '(.devcontainer/Dockerfile|.github/pull_request_template.md|.github/ISSUE_TEMPLATE/*.md)'
VALIDATE_JAVASCRIPT_STANDARD: false
VALIDATE_TYPESCRIPT_STANDARD: false