Skip to content

Commit

Permalink
first version of github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ma4nn committed Jan 30, 2024
1 parent 41c9c4d commit a426e2e
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 1 deletion.
32 changes: 32 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: test

on: [push, pull_request, workflow_dispatch]

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@master

- uses: actions/setup-node@v4
with:
node-version: 20

- uses: leafo/gh-actions-lua@v10
with:
luaVersion: "5.4.3"

- name: build
run: |
make
- name: test
run: |
make test
- name: Archive production artifacts
uses: actions/upload-artifact@v4
with:
name: moneymoney-sankey
path: dist/SankeyChart.lua
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ The compiled MoneyMoney extension can then be found in `dist/SankeyChart.lua` an
- Modern browser is required

### Known Limitations 🚧
- Only 1 currency is supported (the currency of the first transaction is taken, other currencies are ignored then (see debug console))
- Only 1 currency is supported (the currency of the account is taken, other currencies are ignored)
- The report is available in German language only

## Issues
Expand Down

0 comments on commit a426e2e

Please sign in to comment.