Fix no escaping for standard escapes in regular expressions (#315) #144
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: standalone-program | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
create-generateRepo: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
- name: Run npm steps | |
run: | | |
npm install | |
npm run createGenerateRepo | |
npm run cutUnitTests | |
- name: Upload build artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: saff_generate_repo.prog.abap | |
path: saff_generate_repo.prog.abap | |
create-generatorInclude: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
- name: Run npm steps | |
run: | | |
npm install | |
npm run createGeneratorInclude | |
- name: Upload build artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: saff_generator.prog.abap | |
path: saff_generator.prog.abap |