mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-01 04:08:27 +08:00

* additional classes are transpiled * additional unit tests run under node.js * `abap_transpile.json` moved to folder `/test/` from root * new `npm run integration` target, doesnt really do anything yet * new `/test/Readme.md` with [notes and stuff](https://github.com/abapGit/abapGit/pull/4875/files#diff-5de36acd90308dc62abf7855a686ee7052ffb6e762c756fd735fb0c9fbd9595d)
28 lines
487 B
YAML
28 lines
487 B
YAML
name: test
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
types: [opened]
|
|
|
|
jobs:
|
|
unit:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2
|
|
- name: npm run unit
|
|
run: |
|
|
npm install
|
|
npm run unit
|
|
integration:
|
|
needs: unit
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2
|
|
- name: npm run integration
|
|
run: |
|
|
npm install
|
|
npm run integration
|