Skip to content

Commit

Permalink
added workflow for abaplint (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
thorsten-wolf-neptune authored Jan 10, 2024
1 parent c0ae1cb commit d61c777
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: CI

on:
workflow_dispatch:
push:
pull_request:
schedule: # Runs "At 01:00 on Monday Tuesday Wednesday Thursday Friday Saturday and Sunday"
- cron: '0 1 * * 0,1,2,3,4,5,6'

permissions: read-all

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18'

- name: Run npm run ci
run: npm ci

- name: Run actual test
run: npm test

0 comments on commit d61c777

Please sign in to comment.