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

43 lines
841 B
YAML
Raw Normal View History

2021-04-21 00:49:19 +00:00
name: Webchat CI
on:
push:
branches:
- 'main'
- 'staging'
- 'trying'
pull_request:
jobs:
2021-04-22 22:47:23 +00:00
web_chat_build_and_test:
2021-04-21 00:49:19 +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: node-v1-${{ hashFiles('**/package-lock.json') }}
- name: "[js-waku] install using npm ci"
uses: bahmutov/npm-install@v1
- name: "[js-waku] build"
run: npm run build
2021-04-22 11:30:16 +00:00
- name: install using npm i
run: npm install
working-directory: web-chat
2021-04-21 00:49:19 +00:00
- name: test
run: npm run test
working-directory: web-chat