Skip to content

refactor: Fixed circular detection using top left when badge width wa… #44

refactor: Fixed circular detection using top left when badge width wa…

refactor: Fixed circular detection using top left when badge width wa… #44

Workflow file for this run

name: Check Code
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
branches:
- '**'
tags-ignore:
- '**'
jobs:
check-code:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 18, 20, 21 ]
name: Check Code (Node ${{ matrix.node }})
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- run: npm ci
- run: npm run check-code
- run: npm run check-samples