chore(deps): update @atlaskit/radio to v7 #101
This file contains 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: | |
- main | |
paths-ignore: | |
- 'docs/**' | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- 'docs/**' | |
jobs: | |
prepare: # macOS code-signing only works on `push` events and not `pull_request` events | |
if: ${{ !startsWith(github.head_ref, 'release/v') }} | |
name: Prepare CI | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo Running CI for branch ${{ github.head_ref }} | |
lint: | |
name: Lint App | |
uses: ./.github/workflows/lint.yml | |
needs: prepare | |
with: | |
directory: '.' | |
tests: | |
name: Tests | |
uses: ./.github/workflows/test.yml | |
needs: lint | |
secrets: inherit | |
build: | |
name: Build | |
uses: ./.github/workflows/build.yml | |
needs: tests | |
secrets: inherit |