Merge pull request #3626 from 7Xme/patch-1 #2914
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: GitHub Actions CI | |
| on: | |
| push: | |
| branches: main | |
| pull_request: | |
| merge_group: | |
| permissions: | |
| contents: read | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up Git repository | |
| uses: actions/checkout@v6.0.2 | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@7372622e62b60b3cb750dcd2b9e32c247ffec26a # v1 | |
| with: | |
| bundler-cache: true | |
| - name: Set up Node | |
| uses: actions/setup-node@v6.4.0 | |
| - name: Bootstrap | |
| run: script/bootstrap | |
| env: | |
| SKIP_BUNDLER: true | |
| - name: Tests | |
| run: script/test |