Add Hellowork as hard #4453
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
| name: CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| jobs: | |
| jekyll: | |
| name: Run Jekyll Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: 3.4.1 | |
| bundler-cache: true | |
| - run: script/run_jekyll.sh | |
| validate-json: | |
| name: Validate JSON | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: 3.4.1 | |
| bundler-cache: true | |
| - run: script/validate_json.rb | |
| ping-websites: | |
| name: Ping Websites | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: 3.4.1 | |
| bundler-cache: true | |
| - run: script/ping_websites.rb | |
| check-files-formatting: | |
| name: Check Files Formatting | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: script/check_files_formatting.sh |