Feat liste messages bo fusager 587 588 (#502) #187
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: Lint and format | |
on: | |
push: | |
jobs: | |
lint-and-format: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
cache: yarn | |
cache-dependency-path: ./yarn.lock | |
node-version: 20 | |
- name: Install packages | |
run: yarn --immutable | |
- name: Run the linter | |
run: yarn lint:all |