fix: improve domain sets validation #1774
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: Linters | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
prettier: | |
name: Prettier | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run linters | |
run: | | |
./dev.sh npm ci | |
./dev.sh npm run format:check | |
eslint: | |
name: Eslint | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run eslint | |
run: | | |
./dev.sh npm ci | |
./dev.sh npm run lint:check |