Skip to content

add shibuya demo video #27

add shibuya demo video

add shibuya demo video #27

Workflow file for this run

name: Lint code
on:
# Runs on pushes targeting the default branch
pull_request:
branches: ['main']
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref && github.ref || github.run_id }}
cancel-in-progress: true
jobs:
code_quality:
name: 'Code Quality📦'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: npm install
- name: Run ESLint
run: npm run lint