Skip to content

Add native asset cachebusting and redundant-plugin notice #28

Add native asset cachebusting and redundant-plugin notice

Add native asset cachebusting and redundant-plugin notice #28

Workflow file for this run

name: CI
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
permissions:
contents: read
jobs:
validate:
name: Validate plugin
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Setup Node.js
uses: actions/setup-node@v7
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Install Node dependencies
run: npm ci
- name: Validate plugin structure
run: npm run plugin:validate
- name: Validate schema
run: npm run schema:validate
- name: Security scan
run: npm run security:scan
- name: Lint JS and CSS
run: npm run lint