chore: Configure Renovate - autoclosed #5
Workflow file for this run
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: "PR" | |
on: | |
pull_request: | |
branches: | |
- main | |
types: | |
- opened | |
- edited | |
- synchronize | |
permissions: | |
pull-requests: read | |
jobs: | |
semanticpr: | |
name: "Semantic Pull Request" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: amannn/action-semantic-pull-request@v5 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
hooks: | |
name: "Hooks" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Setup Env" | |
uses: ./.github/actions/setup-env | |
- name: Test | |
run: | | |
devenv test | |
test: | |
name: "Project tests" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Setup Env" | |
uses: ./.github/actions/setup-env | |
- name: Global | |
shell: devenv shell bash -- -e {0} | |
run: | | |
yarn nx affected --targets=lint,test:e2e,test,build | |
- name: Containers | |
shell: devenv shell bash -- -e {0} | |
run: | | |
yarn nx affected --targets=container --exclude='*,!tag:container' |