Skip to content

feat: Move the control panel to the top & auto resize the canvas to t… #59

feat: Move the control panel to the top & auto resize the canvas to t…

feat: Move the control panel to the top & auto resize the canvas to t… #59

Workflow file for this run

name: Linting
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
# Use `-f` flag to force install eslint-plugin-import
- run: npm install -f
- name: Run ESLint
run: npm run lint