adjust to new xssec; test sendMail #48
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: ci | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '.github/**' | |
- 'README.md' | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: pwd | |
run: pwd | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
cache: 'npm' | |
- name: Check node version | |
run: node --version | |
- name: Install MTA Build Tool | |
run: npm install -g mbt | |
- name: Install Packages | |
shell: bash | |
env: | |
SAP_NPM_AUTH: ${{ secrets.SAP_NPM_AUTH }} | |
run: npm install ci | |
- name: MTA build | |
uses: SAP/project-piper-action@master | |
with: | |
command: mtaBuild | |
- name: Upload archive file | |
uses: actions/upload-artifact@v3 | |
with: | |
name: mta | |
path: html5userapi.mtar |