ci(lint): fix CI workflow not linting files #3063
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: CI | |
on: | |
pull_request: | |
branches: [master] | |
types: [opened, edited, synchronize, reopened] | |
push: | |
branches: | |
- 'main' | |
merge_group: | |
jobs: | |
CI: | |
runs-on: ubuntu-latest | |
name: CI | |
steps: | |
- name: Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- name: Setup | |
uses: ./.github/actions/setup | |
- name: Check lockfiles | |
uses: ./.github/actions/lockfiles | |
- name: Check merge commit | |
if: github.event_name == 'merge_group' | |
uses: ./.github/actions/merge-commit | |
- name: Statical analysis | |
uses: ./.github/actions/lint | |
- name: Tests | |
run: npm test | |
- name: Build | |
uses: ./.github/actions/build |