mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-03 13:26:12 +08:00
20 lines
296 B
YAML
20 lines
296 B
YAML
name: unit
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
unit:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 2
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: '14'
|
|
- name: npm run unit
|
|
run: |
|
|
npm install
|
|
npm run unit |