π INGRED UI ε γ§δ½Ώγγγ¦γγ close_circle γ’γ€γ³γ³γ line γγ fill γ«ε€ζ΄ #3181
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: PR Check | |
on: | |
pull_request: | |
jobs: | |
test-lint-and-build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup-yarn | |
- name: lint | |
run: make -f ci.mk lint | |
- name: test | |
run: make -f ci.mk test | |
- name: build | |
run: make -f ci.mk build |