feat: add ABAP Push Channel (APC) management entry to transactions #78
This file contains hidden or 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: Build app | |
on: | |
push: | |
jobs: | |
build: | |
permissions: | |
contents: read | |
packages: read | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [22.x] | |
steps: | |
- name: 🔨 checkout repository | |
uses: actions/checkout@v4 | |
- name: 🔨 use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: 🔨 install package dependencies | |
run: npm install | |
- name: 🔨 run test build | |
run: npm run build |