Skip to content

fix(): fix typo component name #4

fix(): fix typo component name

fix(): fix typo component name #4

Workflow file for this run

name: Lint
on:
push:
branches:
- '**'
pull_request:
types: [opened]
jobs:
lintApp:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
- uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm install
- run: npm run lint
- run: npm run build