7.2.0 #1139
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SPDX-FileCopyrightText: 2021 Anders Rune Jensen | |
# | |
# SPDX-License-Identifier: Unlicense | |
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
name: CI | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
licenses: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: REUSE Compliance Check | |
uses: fsfe/reuse-action@v1 | |
test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
strategy: | |
matrix: | |
node-version: [16.x, 18.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm install | |
- name: npm test | |
run: DEBUG=ssb:db2,ssb:db2:* npm test | |
benchmark: | |
needs: test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js 18.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
- run: npm install | |
- name: Benchmark | |
run: npm run benchmark | |
- id: get-comment-body | |
name: Gather results | |
run: | | |
EOF=$(dd if=/dev/urandom bs=15 count=1 status=none | base64) | |
echo "BENCHMARK_OUTPUT<<$EOF" >> $GITHUB_OUTPUT | |
cat /tmp/ssb-db2-benchmark/benchmark.md >> $GITHUB_OUTPUT | |
echo "$EOF" >> $GITHUB_OUTPUT | |
- name: Publish comment | |
uses: mshick/add-pr-comment@v2 | |
with: | |
message: ${{ steps.get-comment-body.outputs.BENCHMARK_OUTPUT }} | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
allow-repeats: true |