js-waku-examples/.github/workflows/ci.yml

45 lines
954 B
YAML
Raw Normal View History

2022-06-17 00:50:54 +00:00
name: CI
on:
push:
branches:
- "master"
pull_request:
jobs:
examples_build_and_test:
strategy:
fail-fast: false
2022-06-17 00:50:54 +00:00
matrix:
example:
[
2022-08-08 02:47:28 +00:00
eth-pm,
relay-angular-chat,
2022-06-17 00:50:54 +00:00
relay-reactjs-chat,
store-reactjs-chat,
2022-08-08 02:47:28 +00:00
web-chat
2022-06-17 00:50:54 +00:00
]
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install NodeJS
uses: actions/setup-node@v2
with:
2023-01-04 20:36:54 +00:00
node-version: "18"
2022-12-23 22:10:06 +00:00
cache: "npm"
cache-dependency-path: "*/package-lock.json"
2022-08-08 02:43:12 +00:00
- name: install
2022-12-24 01:11:04 +00:00
run: npm install
2023-01-04 21:19:35 +00:00
working-directory: "examples/${{ matrix.example }}"
- name: build
2022-12-23 22:10:06 +00:00
run: npm run build
2023-01-04 21:19:35 +00:00
working-directory: "examples/${{ matrix.example }}"
2022-08-08 02:43:12 +00:00
- name: test
2022-12-23 22:10:06 +00:00
run: npm run test --if-present
2023-01-04 21:19:35 +00:00
working-directory: "examples/${{ matrix.example }}"