Skip to content

Added VisiOpt

Added VisiOpt #257

Workflow file for this run

name: Lint & Validate
on:
pull_request_target:
branches:
- main
workflow_dispatch:
jobs:
lint:
name: Lint & Validate
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
- name: Install dependencies
run: npm install
- name: Lint
run: |
npm run lint
- name: Validate
run: |
npm run validate