fix: handle all possible cases of IPA code #934
Workflow file for this run
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
| on: | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| env: | |
| NOKOGIRI_USE_SYSTEM_LIBRARIES: "true" | |
| ELASTICSEARCH_URL: "" # Disable searchyll for test. | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| - name: Setup ruby env | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: '3.2' | |
| bundler-cache: true | |
| - run: npm i | |
| - run: make download-data | |
| - run: make jekyll-build | |
| - run: make test |