chore(deps): bump immutable from 5.0.2 to 5.1.5 #226
This file contains hidden or 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: Run ESLint and Prettier | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| push: | |
| branches: | |
| - master | |
| tags: | |
| - v*.* | |
| jobs: | |
| run-eslint: | |
| runs-on: ubuntu-latest | |
| name: Run ESLint | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Build Docker images | |
| run: | | |
| docker compose build | |
| - name: Run ESLint | |
| run: | | |
| ./bin/run_eslint.sh | |
| run-prettier: | |
| runs-on: ubuntu-latest | |
| name: Run Prettier | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Build Docker images | |
| run: | | |
| docker compose build | |
| - name: Run Prettier | |
| run: | | |
| MODE="check" ./bin/run_formatter.sh |