2022-06-17 00:50:54 +00:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- "master"
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
examples_build_and_test:
|
|
|
|
strategy:
|
2022-08-07 06:33:22 +00:00
|
|
|
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
|
|
|
|
|
2022-08-07 07:47:48 +00:00
|
|
|
- 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-07 07:47:48 +00:00
|
|
|
|
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:17:36 +00:00
|
|
|
working-directory: "! 'examples/%{ matrix.example }'"
|
2022-08-07 07:47:48 +00:00
|
|
|
|
2022-08-08 02:50:34 +00:00
|
|
|
- name: build
|
2022-12-23 22:10:06 +00:00
|
|
|
run: npm run build
|
2023-01-04 21:17:36 +00:00
|
|
|
working-directory: "! 'examples/%{ matrix.example }'"
|
2022-08-08 02:50:34 +00:00
|
|
|
|
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:17:36 +00:00
|
|
|
working-directory: "! 'examples/%{ matrix.example }'"
|