chore(deps): bump the github-actions group across 1 directory with 2 updates #420
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: "build" | |
| on: | |
| pull_request: | |
| branches: ["*"] | |
| types: | |
| # NOTE: these are the defaults | |
| - opened | |
| - synchronize | |
| - reopened | |
| # NOTE: we add this to let the conversion from draft trigger the workflows | |
| - ready_for_review | |
| jobs: | |
| test: | |
| name: "Test Clients" | |
| runs-on: "ubuntu-latest" | |
| steps: | |
| - uses: "actions/checkout@v6" | |
| - uses: "ruby/setup-ruby@v1" | |
| with: | |
| bundler-cache: true | |
| - uses: "authzed/action-spicedb@v1" | |
| - name: "Install dependencies" | |
| run: "bundle install" | |
| - name: "Run rspec" | |
| run: "bundle exec rspec" | |
| conventional-commits: | |
| name: "Lint Commit Messages" | |
| permissions: | |
| contents: "read" | |
| runs-on: "depot-ubuntu-24.04-small" | |
| if: "github.event_name == 'pull_request' && (github.event.action == 'opened' || github.event.action == 'synchronize' || github.event.action == 'reopened' || github.event.action == 'edited')" | |
| steps: | |
| - uses: "actions/checkout@v6" | |
| - uses: "webiny/[email protected]" |