mirror of https://github.com/waku-org/waku-lab.git
55 lines
1.2 KiB
YAML
55 lines
1.2 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- "master"
|
|
pull_request:
|
|
|
|
jobs:
|
|
examples_build_and_test:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
example:
|
|
[
|
|
experimental/web-chat,
|
|
experimental/noise-js,
|
|
experimental/noise-rtc,
|
|
experimental/relay-direct-rtc,
|
|
experimental/rln-js,
|
|
experimental/rln-identity,
|
|
dogfooding,
|
|
message-monitor,
|
|
flush-notes,
|
|
buddybook
|
|
]
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Install NodeJS
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: "18"
|
|
cache: "npm"
|
|
cache-dependency-path: "**/package-lock.json"
|
|
|
|
- name: install
|
|
run: npm install
|
|
working-directory: "examples/${{ matrix.example }}"
|
|
|
|
- name: build
|
|
run: |
|
|
if [ "${{ matrix.example }}" == "buddybook" ]; then
|
|
npm run build:ci
|
|
else
|
|
npm run build
|
|
fi
|
|
working-directory: "examples/${{ matrix.example }}"
|
|
|
|
- name: test
|
|
run: npm run test --if-present
|
|
working-directory: "examples/${{ matrix.example }}"
|