Skip to content

Commit

Permalink
ci(header): adds actions to lint and build
Browse files Browse the repository at this point in the history
Signed-off-by: Kai Henseler <[email protected]>
  • Loading branch information
bromiesTM committed Jul 24, 2024
1 parent 6011347 commit d4c2b07
Show file tree
Hide file tree
Showing 2 changed files with 70 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/header-building.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Header Build and Create Pull Request

on:
pull_request:
branches:
- main
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 lint
run: cd IONOS/ && npm run lint

- name: Run build
run: cd IONOS/ && npm run build

- name: Push changes to branch auto-build-${{ github.head_ref }}-output
run: |
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --global user.name "github-actions[bot]"
git checkout -b auto-build-${{ github.head_ref }}-output
git add IONOS/
git commit -sm "build(header): automatic header build"
git push origin auto-build-${{ github.head_ref }}-output
- name: Remind to create a pull request
run: |
Looks like you forgot to build the new header.
I built it so you can pull it from auto-build-${{ github.head_ref }}-output
26 changes: 26 additions & 0 deletions .github/workflows/header-linting.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
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

- name: Install Dependencies
run: cd IONOS/ && npm ci

- name: Lint Headers
run: cd IONOS/ && npm run lint

- name: Prettier
run: cd IONOS/ && npm run format:check

0 comments on commit d4c2b07

Please sign in to comment.