Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork2k
i18n: new crowdin translations (#2133)#3547
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: | |
| pull_request: | |
| branches: | |
| -gh-pages | |
| pull_request_review: | |
| types:[submitted] | |
| push: | |
| branches: | |
| -gh-pages | |
| permissions: | |
| contents:read | |
| jobs: | |
| test: | |
| runs-on:ubuntu-latest | |
| if:| | |
| github.event.pull_request.draft != true && | |
| (github.event_name == 'pull_request_review' && github.event.review.state == 'approved') || | |
| github.event_name != 'pull_request_review' | |
| steps: | |
| -uses:actions/checkout@v6 | |
| with: | |
| persist-credentials:false | |
| -name:Set up Node.js | |
| uses:actions/setup-node@v6 | |
| -name:Install Node.js dependencies | |
| run:npm install | |
| -name:Run tests | |
| shell:bash | |
| run:npm test | |
| build: | |
| name:Build | |
| runs-on:ubuntu-latest | |
| if:| | |
| github.event.pull_request.draft != true && | |
| (github.event_name == 'pull_request_review' && github.event.review.state == 'approved') || | |
| github.event_name != 'pull_request_review' | |
| steps: | |
| -uses:actions/checkout@v6 | |
| with: | |
| persist-credentials:false | |
| -name:Setup Ruby | |
| uses:ruby/setup-ruby@ac793fdd38cc468a4dd57246fa9d0e868aba9085# https://github.com/ruby/setup-ruby/releases/tag/v1.270.0 | |
| with: | |
| bundler-cache:true# runs 'bundle install' and caches installed gems automatically | |
| -name:Jekyll Build | |
| run:bundle exec jekyll build | |
| -name:Check Docker support | |
| shell:bash | |
| run:| | |
| docker --version | |
| make build |