aboutsummaryrefslogtreecommitdiffstats
path: root/library/sodium-plus/.github/workflows
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2024-03-22 08:37:29 +0000
committerMario <mario@mariovavti.com>2024-03-22 08:37:29 +0000
commit1aeb05628b6a2a069c46980efbe628362c9e3e74 (patch)
treee9aed15d0cd74e0c23dcb05c7be8fe9541efdf36 /library/sodium-plus/.github/workflows
parent5b7387459cf4de8f7354d81cb0392c4225714d94 (diff)
parentb464fae3bf22585888c5f3def8eded76fd48ed16 (diff)
downloadvolse-hubzilla-9.0.tar.gz
volse-hubzilla-9.0.tar.bz2
volse-hubzilla-9.0.zip
Merge branch '9.0RC'9.0
Diffstat (limited to 'library/sodium-plus/.github/workflows')
-rw-r--r--library/sodium-plus/.github/workflows/main.yml40
1 files changed, 40 insertions, 0 deletions
diff --git a/library/sodium-plus/.github/workflows/main.yml b/library/sodium-plus/.github/workflows/main.yml
new file mode 100644
index 000000000..5b5459a31
--- /dev/null
+++ b/library/sodium-plus/.github/workflows/main.yml
@@ -0,0 +1,40 @@
+name: CI
+
+on: [push, pull_request]
+
+jobs:
+ build:
+ strategy:
+ matrix:
+ platform: [ubuntu-latest]
+ node: [ '12', '10' ]
+ name: Node ${{ matrix.node }} (${{ matrix.platform }})
+ runs-on: ${{ matrix.platform }}
+ steps:
+ - uses: actions/checkout@v1
+ - uses: actions/setup-node@v1
+ with:
+ node-version: ${{ matrix.node }}
+ - name: install dependencies
+ run: npm install
+ - name: test without sodium-native
+ run: npm test
+ - name: install sodium-native
+ run: npm install --save sodium-native
+ - name: test with sodium-native
+ run: npm test
+
+ build_latest:
+ name: Node latest
+ runs-on: ubuntu-latest
+ container: node:latest
+ steps:
+ - uses: actions/checkout@v1
+ - name: install dependencies
+ run: npm install
+ - name: test without sodium-native
+ run: npm test
+ - name: install sodium-native
+ run: npm install --save sodium-native
+ - name: test with sodium-native
+ run: npm test