Skip to content

Merge pull request #1659 from tecan/fix/vex-export-double-click #1513

Merge pull request #1659 from tecan/fix/vex-export-double-click

Merge pull request #1659 from tecan/fix/vex-export-double-click #1513

Workflow file for this run

name: Lint
on:
push:
branches:
- '4.14.x' # Release branch
- 'feature-**' # Feature branches
pull_request:
branches:
- '4.14.x' # Release branch
- 'feature-**' # Feature branches
permissions: {}
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # tag=v7.0.0
with:
persist-credentials: false
- name: Set up NodeJs
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # tag=v6.4.0
with:
node-version: '22'
cache: 'npm'
- name: Install Dependencies
run: npm install
- name: Lint Prettier
run: npm run prettier
continue-on-error: false
- name: Lint ESLint
run: npm run eslint
continue-on-error: true