Skip to content

Local gateway + Hot Reload using WebSocket #9

Local gateway + Hot Reload using WebSocket

Local gateway + Hot Reload using WebSocket #9

Workflow file for this run

name: Lint Code Base
on:
pull_request:
branches: [main]
jobs:
lint:
name: Lint Code Base
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
statuses: write
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
id: setup-node
uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
- name: Install Dependencies
id: install
run: yarn install --frozen-lockfile
- name: Lint Code Base
id: super-linter
uses: super-linter/super-linter/slim@v5
env:
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
JAVASCRIPT_DEFAULT_STYLE: prettier
JAVASCRIPT_ES_CONFIG_FILE: .eslintrc.yml
VALIDATE_JSCPD: false
VALIDATE_ALL_CODEBASE: false