🥷 DualListBox で規定の Checkbox を使わないケースを実現する #3174
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 |