Skip to content

[DEVX-3103] Migrate repository configuration from OpsLevel to Port #133

[DEVX-3103] Migrate repository configuration from OpsLevel to Port

[DEVX-3103] Migrate repository configuration from OpsLevel to Port #133

Workflow file for this run

name: Pull Request Check
on:
pull_request:
types:
- opened
- edited
- reopened
- synchronize
concurrency:
group: actions-ci-${{ github.ref }}
cancel-in-progress: true
jobs:
semantic-title:
name: Check PR Title for Semantic Release Type
runs-on: ubuntu-22.04
permissions:
pull-requests: read
steps:
- name: Check PR Title
uses: amannn/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
validateSingleCommit: true
test:
name: Check
runs-on: ubuntu-22.04
permissions:
contents: read
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
cache: 'yarn'
- run: yarn --frozen-lockfile
- run: make test
- run: make build
- run: make lint
- name: Check if built version was committed
run: |
git diff --exit-code || (echo "::error::You forgot to commit the built actions, run 'make' locally" && exit 1)