Skip to content

problems with bundler #36

problems with bundler

problems with bundler #36

Workflow file for this run

name: Common Workflow
on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
- dev
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
statuses: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
<<<<<<< HEAD

Check failure on line 29 in .github/workflows/common.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/common.yml

Invalid workflow file

You have an error in your yaml syntax on line 29
- name: Super-linter
uses: super-linter/super-linter/[email protected]
env:
VALIDATE_JAVASCRIPT_STANDARD: false
VALIDATE_JSON: false
VALIDATE_CHECKOV: false
VALIDATE_CSS: false
VALIDATE_HTML: false
LINTER_RULES_PATH: /
JAVASCRIPT_ES_CONFIG_FILE: eslint.config.js
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
=======
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install modules
run: npm ci
- name: Lint code
run: npx eslint .
>>>>>>> origin/dev