Fix isModule check not working for new class modules #18
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }}" |