Skip to content

Fix isModule check not working for new class modules #18

Fix isModule check not working for new class modules

Fix isModule check not working for new class modules #18

name: Static Analysis
on:
pull_request: {}
push:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
cancel-in-progress: true
permissions: {} # No permissions required
jobs:
analysis:
name: Run ${{ matrix.cmd }}
runs-on: ubuntu-24.04-arm
strategy:
fail-fast: false
matrix:
cmd:
- lint:ts
- lint:js
- lint:workflows
- lint:prettier
- lint:knip
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: "yarn"
node-version: "lts/*"
- name: Install Deps
run: "yarn install --frozen-lockfile"
- name: Run check
run: "yarn run ${{ matrix.cmd }}"