2021-05-04 05:12:36 +00:00
|
|
|
name: Examples CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- 'main'
|
|
|
|
- 'staging'
|
|
|
|
- 'trying'
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
examples_build_and_test:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-05-05 04:57:46 +00:00
|
|
|
example: [ cli-chat, web-chat ]
|
2021-05-04 05:12:36 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
|
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Install NodeJS
|
|
|
|
uses: actions/setup-node@v2
|
|
|
|
with:
|
|
|
|
node-version: '14'
|
|
|
|
|
|
|
|
- name: Cache npm cache
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: ~/.npm
|
|
|
|
key: examples-node-v1-${{ hashFiles('**/package-lock.json') }}
|
|
|
|
|
2021-05-13 00:42:14 +00:00
|
|
|
- name: "[waku-js] install using npm ci"
|
2021-05-04 05:12:36 +00:00
|
|
|
uses: bahmutov/npm-install@v1
|
|
|
|
|
2021-05-13 00:42:14 +00:00
|
|
|
- name: "[waku-js] build"
|
2021-05-04 05:12:36 +00:00
|
|
|
run: npm run build
|
|
|
|
|
|
|
|
- name: ${{ matrix.example }} install using npm i
|
|
|
|
run: npm install
|
|
|
|
working-directory: examples/${{ matrix.example }}
|
|
|
|
|
|
|
|
- name: ${{ matrix.example }} test
|
|
|
|
run: npm run test
|
|
|
|
working-directory: examples/${{ matrix.example }}
|