diff --git a/.github/workflows/header-building.yml b/.github/workflows/header-building.yml new file mode 100644 index 0000000..293b73f --- /dev/null +++ b/.github/workflows/header-building.yml @@ -0,0 +1,37 @@ +name: Header Build and Create Pull Request + +on: + push: + paths: + - 'IONOS/**' + - '!core/js/custom-elements/global-navigation/**' + +jobs: + build-and-pr: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version: 20 + + - name: Install dependencies + run: cd IONOS/ && npm ci + + - name: Run build + run: cd IONOS/ && npm run build + + - name: Create Pull Request + uses: peter-evans/create-pull-request@v6 + with: + commit-message: "build(header): auto build header" + committer: github-actions[bot] + author: ${{ github.actor }} <${{ github.actor_id }}> + branch: header-build-output + delete-branch: true + signoff: true + title: "Automated Header build output" + body: "This PR was created automatically by GitHub Actions" diff --git a/.github/workflows/header-linting.yml b/.github/workflows/header-linting.yml new file mode 100644 index 0000000..4de5774 --- /dev/null +++ b/.github/workflows/header-linting.yml @@ -0,0 +1,29 @@ +name: Header Code Quality + +on: + push: + paths: + - 'IONOS/**' + +jobs: + code-quality: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Install Node + uses: actions/setup-node@v4 + with: + node-version: 20 + cache: 'npm' + + - name: Install Dependencies + run: cd IONOS/ && npm ci + + - name: Lint Headers + run: cd IONOS/ && npm run lint + continue-on-error: true + + - name: Prettier + run: cd IONOS/ && npm run format:check + continue-on-error: true \ No newline at end of file