mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-03 13:26:12 +08:00
30 lines
532 B
YAML
30 lines
532 B
YAML
name: test
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
types: [opened]
|
|
|
|
jobs:
|
|
unit:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 5
|
|
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
|
|
timeout-minutes: 5
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2
|
|
- name: npm run integration
|
|
run: |
|
|
npm install
|
|
npm run integration
|