48 lines
1.1 KiB
YAML
Raw Normal View History

2024-01-09 00:01:53 +01:00
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,
2024-07-23 01:40:27 +02:00
dogfooding,
flush-notes
2024-01-09 00:01:53 +01:00
]
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"
2024-01-09 00:15:24 +01:00
cache-dependency-path: "**/package-lock.json"
2024-01-09 00:01:53 +01:00
- name: install
run: npm install
working-directory: "examples/${{ matrix.example }}"
- name: build
run: npm run build
working-directory: "examples/${{ matrix.example }}"
- name: test
run: npm run test --if-present
working-directory: "examples/${{ matrix.example }}"